We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33b550b commit cd196cfCopy full SHA for cd196cf
1 file changed
app/src/processing/app/contrib/ExamplesContribution.java
@@ -17,8 +17,10 @@ static public ExamplesContribution load(File folder) {
17
18
private ExamplesContribution(File folder) {
19
super(folder);
20
- compatibleModesList = parseCompatibleModesList(properties
21
- .get("compatibleModesList"));
+ if (properties != null) {
+ compatibleModesList = parseCompatibleModesList(properties
22
+ .get("compatibleModesList"));
23
+ }
24
}
25
26
private static ArrayList<String> parseCompatibleModesList(String unparsedModes) {
0 commit comments