File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
spring-core/src/main/java/org/springframework/asm Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 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 */
2930public 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}
You can’t perform that action at this time.
0 commit comments