We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b18d1f commit f47165dCopy full SHA for f47165d
arduino-core/src/processing/app/PreferencesData.java
@@ -120,7 +120,7 @@ static protected void save() {
120
String[] keys = prefs.keySet().toArray(new String[0]);
121
Arrays.sort(keys);
122
for (String key : keys) {
123
- if (key.startsWith("runtime."))
+ if (key.startsWith("runtime.") || key.startsWith("build_properties_custom."))
124
continue;
125
writer.println(key + "=" + prefs.get(key));
126
}
0 commit comments