Skip to content

Commit 8ba209a

Browse files
committed
Improved PreferencesMap toString output
1 parent 617430a commit 8ba209a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: arduino-core/src/processing/app/helpers/PreferencesMap.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ public String toString(String indent) {
248248
String res = indent + "{\n";
249249
SortedSet<String> treeSet = new TreeSet<>(keySet());
250250
for (String k : treeSet)
251-
res += indent + k + " = " + get(k) + "\n";
251+
res += indent + " " + k + " = " + get(k) + "\n";
252+
res += indent + "}\n";
252253
return res;
253254
}
254255

0 commit comments

Comments
 (0)