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 207bd1b commit ac9a26cCopy full SHA for ac9a26c
io.sloeber.autoBuild/src/io/sloeber/autoBuild/extensionPoint/providers/CommonBuilder.java
@@ -311,6 +311,8 @@ private static Set<AutoBuildConfigurationDescription> getConfigsToBuild(IProject
311
cfgToBuild.add((AutoBuildConfigurationDescription) IAutoBuildConfigurationDescription
312
.getActiveConfig(project, false));
313
}
314
+ //remove null configurations that may have been added
315
+ cfgToBuild.remove(null);
316
return cfgToBuild;
317
318
0 commit comments