We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3772c46 commit e0ba764Copy full SHA for e0ba764
1 file changed
common/src/main/java/de/bluecolored/bluemap/common/debug/StateDumper.java
@@ -64,13 +64,11 @@ public void dump(Path file) throws IOException {
64
65
Set<Object> alreadyDumped = Collections.newSetFromMap(new IdentityHashMap<>());
66
67
- writer.name("dump").beginObject();
+ writer.name("dump").beginArray();
68
for (Object instance : instances) {
69
- Class<?> type = instance.getClass();
70
- writer.name(type.getName());
71
dumpInstance(instance, writer, alreadyDumped);
72
}
73
- writer.endObject();
+ writer.endArray();
74
75
writer.name("threads").beginArray();
76
Thread.getAllStackTraces().keySet().stream()
0 commit comments