Skip to content

Commit 96da9b1

Browse files
committed
JBR-8139 Revert "8346986: Remove ASM from java.base"
This reverts commit 3e989fd.
1 parent f73fdee commit 96da9b1

File tree

321 files changed

+1563
-1536
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

321 files changed

+1563
-1536
lines changed

make/Coverage.gmk

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -46,6 +46,7 @@ $(JCOV_IMAGE_DIR)/release: $(JCOV_INPUT_IMAGE_DIR)/release
4646
-t $(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR)/template.xml \
4747
-rt $(JCOV_HOME)/lib/jcov_network_saver.jar \
4848
-exclude 'java.lang.Object' \
49+
-exclude 'jdk.internal.org.objectweb.**' \
4950
-exclude jdk.test.Main -exclude '**\$Proxy*' \
5051
$(JCOV_FILTERS) \
5152
$(JCOV_TEMP)/$(JCOV_IMAGE_SUBDIR)

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/AnnotationVisitor.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/AnnotationVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A visitor to visit a Java annotation. The methods of this class must be called in the following

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/AnnotationWriter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/AnnotationWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* An {@link AnnotationVisitor} that generates a corresponding 'annotation' or 'type_annotation'

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Attribute.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Attribute.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A non standard class, field, method or Code attribute, as defined in the Java Virtual Machine

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ByteVector.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ByteVector.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A dynamically extensible vector of bytes. This class is roughly equivalent to a DataOutputStream

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ClassReader.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ClassReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
import java.io.ByteArrayOutputStream;
6363
import java.io.IOException;

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ClassTooLargeException.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ClassTooLargeException.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* Exception thrown when the constant pool of a class produced by a {@link ClassWriter} is too
@@ -75,7 +75,7 @@ public final class ClassTooLargeException extends IndexOutOfBoundsException {
7575
* Constructs a new {@link ClassTooLargeException}.
7676
*
7777
* @param className the internal name of the class (see {@link
78-
* org.objectweb.asm.Type#getInternalName()}).
78+
* jdk.internal.org.objectweb.asm.Type#getInternalName()}).
7979
* @param constantPoolCount the number of constant pool items of the class.
8080
*/
8181
public ClassTooLargeException(final String className, final int constantPoolCount) {
@@ -85,7 +85,7 @@ public ClassTooLargeException(final String className, final int constantPoolCoun
8585
}
8686

8787
/**
88-
* Returns the internal name of the class (see {@link org.objectweb.asm.Type#getInternalName()}).
88+
* Returns the internal name of the class (see {@link jdk.internal.org.objectweb.asm.Type#getInternalName()}).
8989
*
9090
* @return the internal name of the class.
9191
*/

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ClassVisitor.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ClassVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A visitor to visit a Java class. The methods of this class must be called in the following order:

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ClassWriter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ClassWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A {@link ClassVisitor} that generates a corresponding ClassFile structure, as defined in the Java

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ConstantDynamic.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ConstantDynamic.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
import java.util.Arrays;
6363

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Constants.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
import java.io.DataInputStream;
6363
import java.io.IOException;

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Context.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Context.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* Information about a class being parsed in a {@link ClassReader}.

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/CurrentFrame.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/CurrentFrame.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* Information about the input stack map frame at the "current" instruction of a method. This is

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Edge.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Edge.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* An edge in the control flow graph of a method. Each node of this graph is a basic block,

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/FieldVisitor.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/FieldVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A visitor to visit a Java field. The methods of this class must be called in the following order:

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/FieldWriter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/FieldWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A {@link FieldVisitor} that generates a corresponding 'field_info' structure, as defined in the

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Frame.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Frame.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* The input and output stack map frames of a basic block.

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Handle.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Handle.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A reference to a field or a method.

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Handler.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Handler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* Information about an exception handler. Corresponds to an element of the exception_table array of

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Label.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Label.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A position in the bytecode of a method. Labels are used for jump, goto, and switch instructions,

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/MethodTooLargeException.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/MethodTooLargeException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* Exception thrown when the Code attribute of a method produced by a {@link ClassWriter} is too

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/MethodVisitor.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/MethodVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A visitor to visit a Java method. The methods of this class must be called in the following

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/MethodWriter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/MethodWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A {@link MethodVisitor} that generates a corresponding 'method_info' structure, as defined in the

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ModuleVisitor.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ModuleVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A visitor to visit a Java module. The methods of this class must be called in the following

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/ModuleWriter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/ModuleWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A {@link ModuleVisitor} that generates the corresponding Module, ModulePackages and

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Opcodes.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Opcodes.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* The JVM opcodes, access flags and array type codes. This interface does not define all the JVM

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/RecordComponentVisitor.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/RecordComponentVisitor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A visitor to visit a record component. The methods of this class must be called in the following

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/RecordComponentWriter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/RecordComponentWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
final class RecordComponentWriter extends RecordComponentVisitor {
6363
/** Where the constants used in this RecordComponentWriter must be stored. */

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Symbol.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Symbol.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* An entry of the constant pool, of the BootstrapMethods attribute, or of the (ASM specific) type

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/SymbolTable.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/SymbolTable.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* The constant pool entries, the BootstrapMethods attribute entries and the (ASM specific) type

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/Type.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/Type.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
import java.lang.reflect.Constructor;
6363
import java.lang.reflect.Method;

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/TypePath.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/TypePath.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* The path to a type argument, wildcard bound, array element type, or static inner type within an

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/TypeReference.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/TypeReference.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm;
60+
package jdk.internal.org.objectweb.asm;
6161

6262
/**
6363
* A reference to a type appearing in a class, field or method declaration, or on an instruction.

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/commons/AdviceAdapter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/AdviceAdapter.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm.commons;
60+
package jdk.internal.org.objectweb.asm.commons;
6161

6262
import java.util.ArrayList;
6363
import java.util.HashMap;
6464
import java.util.List;
6565
import java.util.Map;
66-
import org.objectweb.asm.ConstantDynamic;
67-
import org.objectweb.asm.Handle;
68-
import org.objectweb.asm.Label;
69-
import org.objectweb.asm.MethodVisitor;
70-
import org.objectweb.asm.Opcodes;
71-
import org.objectweb.asm.Type;
66+
import jdk.internal.org.objectweb.asm.ConstantDynamic;
67+
import jdk.internal.org.objectweb.asm.Handle;
68+
import jdk.internal.org.objectweb.asm.Label;
69+
import jdk.internal.org.objectweb.asm.MethodVisitor;
70+
import jdk.internal.org.objectweb.asm.Opcodes;
71+
import jdk.internal.org.objectweb.asm.Type;
7272

7373
/**
7474
* A {@link MethodVisitor} to insert before, after and around advices in methods and constructors.

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/commons/AnalyzerAdapter.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/AnalyzerAdapter.java

+8-8
Original file line numberDiff line numberDiff line change
@@ -57,23 +57,23 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm.commons;
60+
package jdk.internal.org.objectweb.asm.commons;
6161

6262
import java.util.ArrayList;
6363
import java.util.HashMap;
6464
import java.util.List;
6565
import java.util.Map;
66-
import org.objectweb.asm.ConstantDynamic;
67-
import org.objectweb.asm.Handle;
68-
import org.objectweb.asm.Label;
69-
import org.objectweb.asm.MethodVisitor;
70-
import org.objectweb.asm.Opcodes;
71-
import org.objectweb.asm.Type;
66+
import jdk.internal.org.objectweb.asm.ConstantDynamic;
67+
import jdk.internal.org.objectweb.asm.Handle;
68+
import jdk.internal.org.objectweb.asm.Label;
69+
import jdk.internal.org.objectweb.asm.MethodVisitor;
70+
import jdk.internal.org.objectweb.asm.Opcodes;
71+
import jdk.internal.org.objectweb.asm.Type;
7272

7373
/**
7474
* A {@link MethodVisitor} that keeps track of stack map frame changes between {@link
7575
* #visitFrame(int, int, Object[], int, Object[])} calls. This adapter must be used with the {@link
76-
* org.objectweb.asm.ClassReader#EXPAND_FRAMES} option. Each visit<i>X</i> instruction delegates to
76+
* jdk.internal.org.objectweb.asm.ClassReader#EXPAND_FRAMES} option. Each visit<i>X</i> instruction delegates to
7777
* the next visitor in the chain, if any, and then simulates the effect of this instruction on the
7878
* stack map frame, represented by {@link #locals} and {@link #stack}. The next visitor in the chain
7979
* can get the state of the stack map frame <i>before</i> each instruction by reading the value of

test/hotspot/jtreg/testlibrary/asm/org/objectweb/asm/commons/AnnotationRemapper.java renamed to src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/AnnotationRemapper.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
* THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
package org.objectweb.asm.commons;
60+
package jdk.internal.org.objectweb.asm.commons;
6161

62-
import org.objectweb.asm.AnnotationVisitor;
63-
import org.objectweb.asm.Opcodes;
62+
import jdk.internal.org.objectweb.asm.AnnotationVisitor;
63+
import jdk.internal.org.objectweb.asm.Opcodes;
6464

6565
/**
6666
* An {@link AnnotationVisitor} that remaps types with a {@link Remapper}.

0 commit comments

Comments
 (0)