From e82efbc7e3739626cd46a924658a29ecbe6c813b Mon Sep 17 00:00:00 2001 From: Juergen Hoeller Date: Thu, 26 Jul 2018 23:11:54 +0200 Subject: [PATCH] Declare ASM7_EXPERIMENTAL for full compatibility with JDK 11 bytecode Issue: SPR-17096 --- .../main/java/org/springframework/asm/SpringAsmInfo.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 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 d7090eeb357..026b8505e51 100644 --- a/spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java +++ b/spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java @@ -18,20 +18,21 @@ package org.springframework.asm; /** * Utility class exposing constants related to Spring's internal repackaging - * of the ASM bytecode manipulation library (currently based on version 6.2). + * of the ASM bytecode library: currently based on ASM 6.2 plus minor patches. * *

See package-level javadocs for more * information on {@code org.springframework.asm}. * * @author Chris Beams + * @author Juergen Hoeller * @since 3.2 */ public final class SpringAsmInfo { /** * The ASM compatibility version for Spring's ASM visitor implementations: - * currently {@link Opcodes#ASM6}. + * currently {@link Opcodes#ASM7_EXPERIMENTAL}. */ - public static final int ASM_VERSION = Opcodes.ASM6; + public static final int ASM_VERSION = Opcodes.ASM7_EXPERIMENTAL; }