Skip to content

Commit e82efbc

Browse files
committed
Declare ASM7_EXPERIMENTAL for full compatibility with JDK 11 bytecode
Issue: SPR-17096
1 parent bcb485b commit e82efbc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,21 @@
1818

1919
/**
2020
* Utility class exposing constants related to Spring's internal repackaging
21-
* of the ASM bytecode manipulation library (currently based on version 6.2).
21+
* of the ASM bytecode library: currently based on ASM 6.2 plus minor patches.
2222
*
2323
* <p>See <a href="package-summary.html">package-level javadocs</a> for more
2424
* information on {@code org.springframework.asm}.
2525
*
2626
* @author Chris Beams
27+
* @author Juergen Hoeller
2728
* @since 3.2
2829
*/
2930
public final class SpringAsmInfo {
3031

3132
/**
3233
* The ASM compatibility version for Spring's ASM visitor implementations:
33-
* currently {@link Opcodes#ASM6}.
34+
* currently {@link Opcodes#ASM7_EXPERIMENTAL}.
3435
*/
35-
public static final int ASM_VERSION = Opcodes.ASM6;
36+
public static final int ASM_VERSION = Opcodes.ASM7_EXPERIMENTAL;
3637

3738
}

0 commit comments

Comments
 (0)