From 078d2fe0e2de02544bca5261400afc5c07d49e85 Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Mon, 16 Dec 2013 22:50:25 +0100 Subject: [PATCH] Added current version information to SpringAsmInfo's javadoc --- .../java/org/springframework/asm/SpringAsmInfo.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 a2c3a1074ac..1413be72921 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;