public class net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting extends net.bytebuddy.build.Plugin$Engine$Listener$Adapter
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting
  super_class: net.bytebuddy.build.Plugin$Engine$Listener$Adapter
{
  protected static final java.lang.String PREFIX;
    descriptor: Ljava/lang/String;
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: "[Byte Buddy]"

  private final java.io.PrintStream printStream;
    descriptor: Ljava/io/PrintStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // java.io.PrintStream printStream
         0: .line 1616
            aload 0 /* this */
            invokespecial net.bytebuddy.build.Plugin$Engine$Listener$Adapter.<init>:()V
         1: .line 1617
            aload 0 /* this */
            aload 1 /* printStream */
            putfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
         2: .line 1618
            return
        end local 1 // java.io.PrintStream printStream
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    3     1  printStream  Ljava/io/PrintStream;
    MethodParameters:
             Name  Flags
      printStream  

  public static net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting toSystemOut();
    descriptor: ()Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 1626
            new net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting
            dup
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            invokespecial net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.<init>:(Ljava/io/PrintStream;)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting toSystemError();
    descriptor: ()Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 1635
            new net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting
            dup
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            invokespecial net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.<init>:(Ljava/io/PrintStream;)V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public net.bytebuddy.build.Plugin$Engine$Listener withTransformationsOnly();
    descriptor: ()Lnet/bytebuddy/build/Plugin$Engine$Listener;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
         0: .line 1644
            new net.bytebuddy.build.Plugin$Engine$Listener$WithTransformationsOnly
            dup
            aload 0 /* this */
            invokespecial net.bytebuddy.build.Plugin$Engine$Listener$WithTransformationsOnly.<init>:(Lnet/bytebuddy/build/Plugin$Engine$Listener;)V
            areturn
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;

  public net.bytebuddy.build.Plugin$Engine$Listener withErrorsOnly();
    descriptor: ()Lnet/bytebuddy/build/Plugin$Engine$Listener;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
         0: .line 1653
            new net.bytebuddy.build.Plugin$Engine$Listener$WithErrorsOnly
            dup
            aload 0 /* this */
            invokespecial net.bytebuddy.build.Plugin$Engine$Listener$WithErrorsOnly.<init>:(Lnet/bytebuddy/build/Plugin$Engine$Listener;)V
            areturn
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;

  public void onDiscovery(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // java.lang.String typeName
         0: .line 1660
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] DISCOVERY %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeName */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1661
            return
        end local 1 // java.lang.String typeName
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  typeName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      typeName  

  public void onTransformation(net.bytebuddy.description.type.TypeDescription, net.bytebuddy.build.Plugin);
    descriptor: (Lnet/bytebuddy/description/type/TypeDescription;Lnet/bytebuddy/build/Plugin;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        start local 2 // net.bytebuddy.build.Plugin plugin
         0: .line 1667
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] TRANSFORM %s for %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeDescription */
            aastore
            dup
            iconst_1
            aload 2 /* plugin */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1668
            return
        end local 2 // net.bytebuddy.build.Plugin plugin
        end local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  typeDescription  Lnet/bytebuddy/description/type/TypeDescription;
            0    2     2           plugin  Lnet/bytebuddy/build/Plugin;
    MethodParameters:
                 Name  Flags
      typeDescription  
      plugin           

  public void onIgnored(net.bytebuddy.description.type.TypeDescription, net.bytebuddy.build.Plugin);
    descriptor: (Lnet/bytebuddy/description/type/TypeDescription;Lnet/bytebuddy/build/Plugin;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        start local 2 // net.bytebuddy.build.Plugin plugin
         0: .line 1674
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] IGNORE %s for %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeDescription */
            aastore
            dup
            iconst_1
            aload 2 /* plugin */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1675
            return
        end local 2 // net.bytebuddy.build.Plugin plugin
        end local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  typeDescription  Lnet/bytebuddy/description/type/TypeDescription;
            0    2     2           plugin  Lnet/bytebuddy/build/Plugin;
    MethodParameters:
                 Name  Flags
      typeDescription  
      plugin           

  public void onError(net.bytebuddy.description.type.TypeDescription, net.bytebuddy.build.Plugin, java.lang.Throwable);
    descriptor: (Lnet/bytebuddy/description/type/TypeDescription;Lnet/bytebuddy/build/Plugin;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        start local 2 // net.bytebuddy.build.Plugin plugin
        start local 3 // java.lang.Throwable throwable
         0: .line 1681
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            dup
            astore 4
            monitorenter
         1: .line 1682
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] ERROR %s for %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeDescription */
            aastore
            dup
            iconst_1
            aload 2 /* plugin */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         2: .line 1683
            aload 3 /* throwable */
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            invokevirtual java.lang.Throwable.printStackTrace:(Ljava/io/PrintStream;)V
         3: .line 1681
            aload 4
            monitorexit
         4: goto 7
      StackMap locals: net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting net.bytebuddy.description.type.TypeDescription net.bytebuddy.build.Plugin java.lang.Throwable java.io.PrintStream
      StackMap stack: java.lang.Throwable
         5: aload 4
            monitorexit
         6: athrow
         7: .line 1685
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.Throwable throwable
        end local 2 // net.bytebuddy.build.Plugin plugin
        end local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    8     1  typeDescription  Lnet/bytebuddy/description/type/TypeDescription;
            0    8     2           plugin  Lnet/bytebuddy/build/Plugin;
            0    8     3        throwable  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
                 Name  Flags
      typeDescription  
      plugin           
      throwable        

  public void onError(net.bytebuddy.build.Plugin, java.lang.Throwable);
    descriptor: (Lnet/bytebuddy/build/Plugin;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // net.bytebuddy.build.Plugin plugin
        start local 2 // java.lang.Throwable throwable
         0: .line 1691
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            dup
            astore 3
            monitorenter
         1: .line 1692
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] ERROR %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* plugin */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         2: .line 1693
            aload 2 /* throwable */
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            invokevirtual java.lang.Throwable.printStackTrace:(Ljava/io/PrintStream;)V
         3: .line 1691
            aload 3
            monitorexit
         4: goto 7
      StackMap locals: net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting net.bytebuddy.build.Plugin java.lang.Throwable java.io.PrintStream
      StackMap stack: java.lang.Throwable
         5: aload 3
            monitorexit
         6: athrow
         7: .line 1695
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Throwable throwable
        end local 1 // net.bytebuddy.build.Plugin plugin
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    8     1     plugin  Lnet/bytebuddy/build/Plugin;
            0    8     2  throwable  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
    MethodParameters:
           Name  Flags
      plugin     
      throwable  

  public void onUnresolved(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // java.lang.String typeName
         0: .line 1701
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] UNRESOLVED %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeName */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1702
            return
        end local 1 // java.lang.String typeName
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  typeName  Ljava/lang/String;
    MethodParameters:
          Name  Flags
      typeName  

  public void onLiveInitializer(net.bytebuddy.description.type.TypeDescription, net.bytebuddy.description.type.TypeDescription);
    descriptor: (Lnet/bytebuddy/description/type/TypeDescription;Lnet/bytebuddy/description/type/TypeDescription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        start local 2 // net.bytebuddy.description.type.TypeDescription definingType
         0: .line 1708
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] LIVE %s on %s"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeDescription */
            aastore
            dup
            iconst_1
            aload 2 /* definingType */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1709
            return
        end local 2 // net.bytebuddy.description.type.TypeDescription definingType
        end local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  typeDescription  Lnet/bytebuddy/description/type/TypeDescription;
            0    2     2     definingType  Lnet/bytebuddy/description/type/TypeDescription;
    MethodParameters:
                 Name  Flags
      typeDescription  
      definingType     

  public void onComplete(net.bytebuddy.description.type.TypeDescription);
    descriptor: (Lnet/bytebuddy/description/type/TypeDescription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
         0: .line 1715
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] COMPLETE %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* typeDescription */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1716
            return
        end local 1 // net.bytebuddy.description.type.TypeDescription typeDescription
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  typeDescription  Lnet/bytebuddy/description/type/TypeDescription;
    MethodParameters:
                 Name  Flags
      typeDescription  

  public void onManifest(java.util.jar.Manifest);
    descriptor: (Ljava/util/jar/Manifest;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // java.util.jar.Manifest manifest
         0: .line 1722
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] MANIFEST %b"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* manifest */
            ifnull 1
            iconst_1
            goto 2
      StackMap locals: net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting java.util.jar.Manifest
      StackMap stack: java.io.PrintStream java.lang.String java.lang.Object[] java.lang.Object[] int
         1: iconst_0
      StackMap locals: net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting java.util.jar.Manifest
      StackMap stack: java.io.PrintStream java.lang.String java.lang.Object[] java.lang.Object[] int int
         2: invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         3: .line 1723
            return
        end local 1 // java.util.jar.Manifest manifest
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    4     1  manifest  Ljava/util/jar/Manifest;
    MethodParameters:
          Name  Flags
      manifest  

  public void onResource(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
        start local 1 // java.lang.String name
         0: .line 1729
            aload 0 /* this */
            getfield net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting.printStream:Ljava/io/PrintStream;
            ldc "[Byte Buddy] RESOURCE %s"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* name */
            aastore
            invokevirtual java.io.PrintStream.printf:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/io/PrintStream;
            pop
         1: .line 1730
            return
        end local 1 // java.lang.String name
        end local 0 // net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lnet/bytebuddy/build/Plugin$Engine$Listener$StreamWriting;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  
}
SourceFile: "Plugin.java"
NestHost: net.bytebuddy.build.Plugin
InnerClasses:
  public abstract Enhance = net.bytebuddy.build.HashCodeAndEqualsPlugin$Enhance of net.bytebuddy.build.HashCodeAndEqualsPlugin
  public abstract Engine = net.bytebuddy.build.Plugin$Engine of net.bytebuddy.build.Plugin
  public abstract Listener = net.bytebuddy.build.Plugin$Engine$Listener of net.bytebuddy.build.Plugin$Engine
  public abstract Adapter = net.bytebuddy.build.Plugin$Engine$Listener$Adapter of net.bytebuddy.build.Plugin$Engine$Listener
  public StreamWriting = net.bytebuddy.build.Plugin$Engine$Listener$StreamWriting of net.bytebuddy.build.Plugin$Engine$Listener
  public WithErrorsOnly = net.bytebuddy.build.Plugin$Engine$Listener$WithErrorsOnly of net.bytebuddy.build.Plugin$Engine$Listener
  public WithTransformationsOnly = net.bytebuddy.build.Plugin$Engine$Listener$WithTransformationsOnly of net.bytebuddy.build.Plugin$Engine$Listener
    RuntimeVisibleAnnotations: 
      net.bytebuddy.build.HashCodeAndEqualsPlugin$Enhance()