Use asm bundled by bytebuddy in field-backed provider

JVM's ASM is not bundled with the agent and may not be present at runtime.
This commit is contained in:
Andrew Kent 2018-12-18 17:01:40 -08:00
parent 7a2de68156
commit d0f3cfa3d6
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,6 @@ import java.util.HashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;
import jdk.internal.org.objectweb.asm.ClassWriter;
import lombok.extern.slf4j.Slf4j;
import net.bytebuddy.ByteBuddy;
import net.bytebuddy.agent.builder.AgentBuilder;
@ -37,6 +36,7 @@ import net.bytebuddy.description.type.TypeDescription;
import net.bytebuddy.dynamic.DynamicType;
import net.bytebuddy.implementation.Implementation;
import net.bytebuddy.jar.asm.ClassVisitor;
import net.bytebuddy.jar.asm.ClassWriter;
import net.bytebuddy.jar.asm.FieldVisitor;
import net.bytebuddy.jar.asm.Label;
import net.bytebuddy.jar.asm.MethodVisitor;