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