File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
spring-core/src/main/java/org/springframework/asm Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ public ClassReader(
194
194
this .b = classFileBuffer ;
195
195
// Check the class' major_version. This field is after the magic and minor_version fields, which
196
196
// use 4 and 2 bytes respectively.
197
- if (checkClassVersion && readShort (classFileOffset + 6 ) > Opcodes .V18 ) {
197
+ if (checkClassVersion && readShort (classFileOffset + 6 ) > Opcodes .V19 ) {
198
198
throw new IllegalArgumentException (
199
199
"Unsupported class file major version " + readShort (classFileOffset + 6 ));
200
200
}
Original file line number Diff line number Diff line change @@ -283,6 +283,7 @@ public interface Opcodes {
283
283
int V16 = 0 << 16 | 60 ;
284
284
int V17 = 0 << 16 | 61 ;
285
285
int V18 = 0 << 16 | 62 ;
286
+ int V19 = 0 << 16 | 63 ;
286
287
287
288
/**
288
289
* Version flag indicating that the class is using 'preview' features.
You can’t perform that action at this time.
0 commit comments