File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
out/production/bytecode-viewer/the/bytecode/club/bytecodeviewer/decompilers/bytecode
src/the/bytecode/club/bytecodeviewer/decompilers/bytecode Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ protected static PrefixedStringBuilder decompile(
67
67
}
68
68
sb .append (" {" );
69
69
sb .append (BytecodeViewer .nl );
70
+ sb .append (" " );
71
+ sb .append ("<ClassVersion=" + cn .version + ">" );
72
+ sb .append (BytecodeViewer .nl );
73
+
70
74
if (cn .sourceDebug != null ) {
71
75
sb .append (" " );
72
76
sb .append ("<SourceDebug=" + cn .sourceDebug + ">" );
@@ -132,7 +136,7 @@ protected static PrefixedStringBuilder decompile(
132
136
}
133
137
}
134
138
135
- sb .append (BytecodeViewer .nl );
139
+ // sb.append(BytecodeViewer.nl);
136
140
sb .append ("}" );
137
141
// System.out.println("Wrote end for " + cn.name +
138
142
// " with prefix length: " + sb.prefix.length());
You can’t perform that action at this time.
0 commit comments