We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c9bd3 commit 162d56bCopy full SHA for 162d56b
io.sloeber.core/src/io/sloeber/core/managers/ArduinoPlatform.java
@@ -177,8 +177,8 @@ public File getPlatformFile() {
177
178
public Path getInstallPath() {
179
String stPath = ConfigurationPreferences.getInstallationPath().append(Const.PACKAGES_FOLDER_NAME)
180
- .append(this.pkg.getName()).append(Const.ARDUINO_HARDWARE_FOLDER_NAME) // $NON-NLS-1$
181
- .append(this.architecture).append(this.version).toString();
+ .append(this.pkg.getName()).append(Const.ARDUINO_HARDWARE_FOLDER_NAME).append(this.architecture)
+ .append(this.version).toString();
182
return Paths.get(stPath);
183
}
184
0 commit comments