diff --git a/spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java b/spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java index a2c3a1074a..1413be7292 100644 --- a/spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java +++ b/spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,10 +17,10 @@ package org.springframework.asm; /** - * Utility class exposing constants related to Spring's internal repackaging of the ASM - * bytecode manipulation library. + * Utility class exposing constants related to Spring's internal repackaging + * of the ASM bytecode manipulation library. * - *
See package-level Javadoc for more + *
See package-level javadoc for more * information on {@code org.springframework.asm}. * * @author Chris Beams @@ -29,8 +29,8 @@ package org.springframework.asm; public final class SpringAsmInfo { /** - * The ASM version used internally throughout the framework. - * + * The ASM compatibility version for Spring's ASM visitor implementations: + * as of Spring 3.2, it's ASM4. To be updated once we upgrade to ASM 5.0. * @see Opcodes#ASM4 */ public static final int ASM_VERSION = Opcodes.ASM4;