We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fee5848 commit 8d27171Copy full SHA for 8d27171
app/src/processing/app/Base.java
@@ -359,7 +359,7 @@ public Base(String[] args) throws Exception {
359
}
360
361
Optional<ContributedLibrary> mayInstalled = indexer.getIndex().getInstalled(libraryToInstallParts[0]);
362
- if (mayInstalled.isPresent() && mayInstalled.get().isIDEBuiltIn()) {
+ if (mayInstalled.isPresent() && selected.isIDEBuiltIn()) {
363
libraryInstaller.remove(mayInstalled.get(), progressListener);
364
} else {
365
libraryInstaller.install(selected, mayInstalled, progressListener);
0 commit comments