We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b7e684 commit 5650ed4Copy full SHA for 5650ed4
1 file changed
asm/src/main/java/org/objectweb/asm/ClassReader.java
@@ -195,7 +195,7 @@ public ClassReader(
195
this.b = classFileBuffer;
196
// Check the class' major_version. This field is after the magic and minor_version fields, which
197
// use 4 and 2 bytes respectively.
198
- if (checkClassVersion && readShort(classFileOffset + 6) > Opcodes.V26) {
+ if (checkClassVersion && readShort(classFileOffset + 6) > Opcodes.V31) {
199
throw new IllegalArgumentException(
200
"Unsupported class file major version " + readShort(classFileOffset + 6));
201
}
0 commit comments