1
0
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:
Cristian Maglie 2018-09-28 01:41:56 +02:00
parent 617430a72f
commit 8ba209a64d

View File

@ -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;
}