Skip to content

Commit 7a3dd2a

Browse files
committed
Allow ASM5's bytecode parsing of INVOKESPECIAL/STATIC on interfaces
Issue: SPR-11979
1 parent cec3ffa commit 7a3dd2a

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

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

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2014 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -17,10 +17,10 @@
1717
package org.springframework.asm;
1818

1919
/**
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).
2222
*
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
2424
* information on {@code org.springframework.asm}.
2525
*
2626
* @author Chris Beams
@@ -29,10 +29,9 @@
2929
public final class SpringAsmInfo {
3030

3131
/**
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}.
3534
*/
36-
public static final int ASM_VERSION = Opcodes.ASM4;
35+
public static final int ASM_VERSION = Opcodes.ASM5;
3736

3837
}

0 commit comments

Comments
 (0)