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