File tree 1 file changed +4
-3
lines changed
spring-core/src/main/java/org/springframework/asm
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 18
18
19
19
/**
20
20
* 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 .
22
22
*
23
23
* <p>See <a href="package-summary.html">package-level javadocs</a> for more
24
24
* information on {@code org.springframework.asm}.
25
25
*
26
26
* @author Chris Beams
27
+ * @author Juergen Hoeller
27
28
* @since 3.2
28
29
*/
29
30
public final class SpringAsmInfo {
30
31
31
32
/**
32
33
* The ASM compatibility version for Spring's ASM visitor implementations:
33
- * currently {@link Opcodes#ASM6 }.
34
+ * currently {@link Opcodes#ASM7_EXPERIMENTAL }.
34
35
*/
35
- public static final int ASM_VERSION = Opcodes .ASM6 ;
36
+ public static final int ASM_VERSION = Opcodes .ASM7_EXPERIMENTAL ;
36
37
37
38
}
You can’t perform that action at this time.
0 commit comments