mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-30 19:52:13 +01:00
Improved PreferencesMap toString output
This commit is contained in:
parent
617430a72f
commit
8ba209a64d
@ -248,7 +248,8 @@ public class PreferencesMap extends LinkedHashMap<String, String> {
|
||||
String res = indent + "{\n";
|
||||
SortedSet<String> treeSet = new TreeSet<>(keySet());
|
||||
for (String k : treeSet)
|
||||
res += indent + k + " = " + get(k) + "\n";
|
||||
res += indent + " " + k + " = " + get(k) + "\n";
|
||||
res += indent + "}\n";
|
||||
return res;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user