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

Revert "Do not save build_properties_custom.* preferences to disk"

This reverts commit f47165db644e432a9b7456102c6ad0f34fbf7b11.
This commit is contained in:
Sandeep Mistry 2016-04-13 08:58:35 -04:00
parent f47165db64
commit 9c741885e0

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.") || key.startsWith("build_properties_custom."))
if (key.startsWith("runtime."))
continue;
writer.println(key + "=" + prefs.get(key));
}