mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-15 12:29:26 +01:00
Revert "Do not save build_properties_custom.* preferences to disk"
This reverts commit f47165db644e432a9b7456102c6ad0f34fbf7b11.
This commit is contained in:
parent
f47165db64
commit
9c741885e0
@ -120,7 +120,7 @@ public class PreferencesData {
|
|||||||
String[] keys = prefs.keySet().toArray(new String[0]);
|
String[] keys = prefs.keySet().toArray(new String[0]);
|
||||||
Arrays.sort(keys);
|
Arrays.sort(keys);
|
||||||
for (String key : keys) {
|
for (String key : keys) {
|
||||||
if (key.startsWith("runtime.") || key.startsWith("build_properties_custom."))
|
if (key.startsWith("runtime."))
|
||||||
continue;
|
continue;
|
||||||
writer.println(key + "=" + prefs.get(key));
|
writer.println(key + "=" + prefs.get(key));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user