Skip to content

Commit d706672

Browse files
committed
Cause why not
1 parent bd8025b commit d706672

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/the/bytecode/club/bytecodeviewer/decompilers/bytecode/ClassNodeDecompiler.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ protected static PrefixedStringBuilder decompile(
6767
}
6868
sb.append(" {");
6969
sb.append(BytecodeViewer.nl);
70+
sb.append(" ");
71+
sb.append("<ClassVersion=" + cn.version + ">");
72+
sb.append(BytecodeViewer.nl);
73+
7074
if (cn.sourceDebug != null) {
7175
sb.append(" ");
7276
sb.append("<SourceDebug=" + cn.sourceDebug + ">");
@@ -132,7 +136,7 @@ protected static PrefixedStringBuilder decompile(
132136
}
133137
}
134138

135-
sb.append(BytecodeViewer.nl);
139+
//sb.append(BytecodeViewer.nl);
136140
sb.append("}");
137141
// System.out.println("Wrote end for " + cn.name +
138142
// " with prefix length: " + sb.prefix.length());

0 commit comments

Comments
 (0)