We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5f759b commit 3a3bc5bCopy full SHA for 3a3bc5b
arduino-core/src/processing/app/packages/UserLibrary.java
@@ -141,7 +141,7 @@ public static UserLibrary create(UserLibraryFolder libFolderDesc) throws IOExcep
141
}
142
143
List<String> includes = null;
144
- if (properties.containsKey("includes")) {
+ if (properties.containsKey("includes") && !properties.get("includes").trim().isEmpty()) {
145
includes = new ArrayList<>();
146
for (String i : properties.get("includes").split(","))
147
includes.add(i.trim());
0 commit comments