1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Do not save build_properties_custom.* preferences to disk

This commit is contained in:
Sandeep Mistry 2016-04-12 10:15:01 -04:00
parent 2b18d1fba0
commit f47165db64

View File

@ -120,7 +120,7 @@ public class PreferencesData {
String[] keys = prefs.keySet().toArray(new String[0]);
Arrays.sort(keys);
for (String key : keys) {
if (key.startsWith("runtime."))
if (key.startsWith("runtime.") || key.startsWith("build_properties_custom."))
continue;
writer.println(key + "=" + prefs.get(key));
}