Document ASM version as 7.x (effectively 7.3 at present)

This commit is contained in:
Juergen Hoeller
2021-02-16 00:15:50 +01:00
parent 29799be474
commit 940f57d023
8 changed files with 8 additions and 8 deletions

View File

@@ -76,7 +76,7 @@ public abstract class AnnotationVisitor {
&& api != Opcodes.ASM8_EXPERIMENTAL) {
throw new IllegalArgumentException("Unsupported api " + api);
}
// SPRING PATCH: no preview mode check for ASM 8 experimental
// SPRING PATCH: no preview mode check for ASM experimental
this.api = api;
this.av = annotationVisitor;
}

View File

@@ -74,7 +74,7 @@ public abstract class ClassVisitor {
&& api != Opcodes.ASM8_EXPERIMENTAL) {
throw new IllegalArgumentException("Unsupported api " + api);
}
// SPRING PATCH: no preview mode check for ASM 8 experimental
// SPRING PATCH: no preview mode check for ASM experimental
this.api = api;
this.cv = classVisitor;
}

View File

@@ -72,7 +72,7 @@ public abstract class FieldVisitor {
&& api != Opcodes.ASM8_EXPERIMENTAL) {
throw new IllegalArgumentException("Unsupported api " + api);
}
// SPRING PATCH: no preview mode check for ASM 8 experimental
// SPRING PATCH: no preview mode check for ASM experimental
this.api = api;
this.fv = fieldVisitor;
}

View File

@@ -88,7 +88,7 @@ public abstract class MethodVisitor {
&& api != Opcodes.ASM8_EXPERIMENTAL) {
throw new IllegalArgumentException("Unsupported api " + api);
}
// SPRING PATCH: no preview mode check for ASM 8 experimental
// SPRING PATCH: no preview mode check for ASM experimental
this.api = api;
this.mv = methodVisitor;
}

View File

@@ -74,7 +74,7 @@ public abstract class ModuleVisitor {
&& api != Opcodes.ASM8_EXPERIMENTAL) {
throw new IllegalArgumentException("Unsupported api " + api);
}
// SPRING PATCH: no preview mode check for ASM 8 experimental
// SPRING PATCH: no preview mode check for ASM experimental
this.api = api;
this.mv = moduleVisitor;
}

View File

@@ -80,7 +80,7 @@ public abstract class RecordComponentVisitor {
&& api != Opcodes.ASM8_EXPERIMENTAL) {
throw new IllegalArgumentException("Unsupported api " + api);
}
// SPRING PATCH: no preview mode check for ASM 8 experimental
// SPRING PATCH: no preview mode check for ASM experimental
this.api = api;
this.delegate = recordComponentVisitor;
}

View File

@@ -1,6 +1,6 @@
/**
* Spring's repackaging of
* <a href="https://gitlab.ow2.org/asm/asm">ASM 7.0</a>
* <a href="https://gitlab.ow2.org/asm/asm">ASM 7.x</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with

View File

@@ -212,7 +212,7 @@ code for these subcomponents is subject to the terms and
conditions of the following licenses.
>>> ASM 7.1 (org.ow2.asm:asm:7.1, org.ow2.asm:asm-commons:7.1):
>>> ASM 7.3 (org.ow2.asm:asm:7.3, org.ow2.asm:asm-commons:7.3):
Copyright (c) 2000-2011 INRIA, France Telecom
All rights reserved.