File tree 1 file changed +7
-8
lines changed
spring-core/src/main/java/org/springframework/asm
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2012 the original author or authors.
2
+ * Copyright 2002-2014 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
17
17
package org .springframework .asm ;
18
18
19
19
/**
20
- * Utility class exposing constants related to Spring's internal repackaging of the ASM
21
- * bytecode manipulation library.
20
+ * Utility class exposing constants related to Spring's internal repackaging
21
+ * of the ASM bytecode manipulation library (currently based on version 5.0) .
22
22
*
23
- * <p>See <a href="package-summary.html">package-level Javadoc </a> for more
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
29
29
public final class SpringAsmInfo {
30
30
31
31
/**
32
- * The ASM version used internally throughout the framework.
33
- *
34
- * @see Opcodes#ASM4
32
+ * The ASM compatibility version for Spring's ASM visitor implementations:
33
+ * currently {@link Opcodes#ASM5}.
35
34
*/
36
- public static final int ASM_VERSION = Opcodes .ASM4 ;
35
+ public static final int ASM_VERSION = Opcodes .ASM5 ;
37
36
38
37
}
You can’t perform that action at this time.
0 commit comments