Skip to content

Commit f47165d

Browse files
committed
Do not save build_properties_custom.* preferences to disk
1 parent 2b18d1f commit f47165d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/processing/app/PreferencesData.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ static protected void save() {
120120
String[] keys = prefs.keySet().toArray(new String[0]);
121121
Arrays.sort(keys);
122122
for (String key : keys) {
123-
if (key.startsWith("runtime."))
123+
if (key.startsWith("runtime.") || key.startsWith("build_properties_custom."))
124124
continue;
125125
writer.println(key + "=" + prefs.get(key));
126126
}

0 commit comments

Comments
 (0)