We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2e9a6 commit 0a8e7a1Copy full SHA for 0a8e7a1
arduino-core/src/processing/app/BaseNoGui.java
@@ -210,6 +210,9 @@ static public File getDefaultSketchbookFolder() {
210
}
211
212
public static DiscoveryManager getDiscoveryManager() {
213
+ if (discoveryManager == null) {
214
+ discoveryManager = new DiscoveryManager();
215
+ }
216
return discoveryManager;
217
218
@@ -633,7 +636,9 @@ static public void initPackages() throws Exception {
633
636
FileUtils.deleteIfExists(librariesIndexFile);
634
637
635
638
- discoveryManager = new DiscoveryManager();
639
640
641
642
643
644
static protected void initPlatform() {
0 commit comments