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 d9a7b5d commit 57bff44Copy full SHA for 57bff44
arduino-core/src/cc/arduino/contributions/packages/ContributedPlatform.java
@@ -78,8 +78,9 @@ public void resolveToolsDependencies(Collection<ContributedPackage> packages) {
78
ContributedTool tool = dep.resolve(packages);
79
if (tool == null) {
80
System.err.println("Index error: could not find referenced tool " + dep);
81
+ } else {
82
+ resolvedTools.add(tool);
83
}
- resolvedTools.add(tool);
84
85
86
0 commit comments