public abstract class io.netty.handler.codec.http.multipart.AbstractMemoryHttpData extends io.netty.handler.codec.http.multipart.AbstractHttpData
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.handler.codec.http.multipart.AbstractMemoryHttpData
  super_class: io.netty.handler.codec.http.multipart.AbstractHttpData
{
  private io.netty.buffer.ByteBuf byteBuf;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0002) ACC_PRIVATE

  private int chunkPosition;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(java.lang.String, java.nio.charset.Charset, long);
    descriptor: (Ljava/lang/String;Ljava/nio/charset/Charset;J)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // java.lang.String name
        start local 2 // java.nio.charset.Charset charset
        start local 3 // long size
         0: .line 45
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* charset */
            lload 3 /* size */
            invokespecial io.netty.handler.codec.http.multipart.AbstractHttpData.<init>:(Ljava/lang/String;Ljava/nio/charset/Charset;J)V
         1: .line 46
            return
        end local 3 // long size
        end local 2 // java.nio.charset.Charset charset
        end local 1 // java.lang.String name
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0    2     1     name  Ljava/lang/String;
            0    2     2  charset  Ljava/nio/charset/Charset;
            0    2     3     size  J
    MethodParameters:
         Name  Flags
      name     
      charset  
      size     

  public void setContent(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // io.netty.buffer.ByteBuf buffer
         0: .line 50
            aload 1 /* buffer */
            ifnonnull 2
         1: .line 51
            new java.lang.NullPointerException
            dup
            ldc "buffer"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 53
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            i2l
            lstore 2 /* localsize */
        start local 2 // long localsize
         3: .line 54
            aload 0 /* this */
            lload 2 /* localsize */
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.checkSize:(J)V
         4: .line 55
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            lconst_0
            lcmp
            ifle 8
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            lload 2 /* localsize */
            lcmp
            ifge 8
         5: .line 56
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Out of size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            lload 2 /* localsize */
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " > "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 57
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 56
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 59
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnull 10
         9: .line 60
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        10: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
        11: .line 63
            aload 0 /* this */
            lload 2 /* localsize */
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
        12: .line 64
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.setCompleted:()V
        13: .line 65
            return
        end local 2 // long localsize
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   14     0       this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0   14     1     buffer  Lio/netty/buffer/ByteBuf;
            3   14     2  localsize  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      buffer  

  public void setContent(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // java.io.InputStream inputStream
         0: .line 69
            aload 1 /* inputStream */
            ifnonnull 2
         1: .line 70
            new java.lang.NullPointerException
            dup
            ldc "inputStream"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 72
      StackMap locals:
      StackMap stack:
            invokestatic io.netty.buffer.Unpooled.buffer:()Lio/netty/buffer/ByteBuf;
            astore 2 /* buffer */
        start local 2 // io.netty.buffer.ByteBuf buffer
         3: .line 73
            sipush 16384
            newarray 8
            astore 3 /* bytes */
        start local 3 // byte[] bytes
         4: .line 74
            aload 1 /* inputStream */
            aload 3 /* bytes */
            invokevirtual java.io.InputStream.read:([B)I
            istore 4 /* read */
        start local 4 // int read
         5: .line 75
            iconst_0
            istore 5 /* written */
        start local 5 // int written
         6: .line 76
            goto 11
         7: .line 77
      StackMap locals: io.netty.handler.codec.http.multipart.AbstractMemoryHttpData java.io.InputStream io.netty.buffer.ByteBuf byte[] int int
      StackMap stack:
            aload 2 /* buffer */
            aload 3 /* bytes */
            iconst_0
            iload 4 /* read */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([BII)Lio/netty/buffer/ByteBuf;
            pop
         8: .line 78
            iload 5 /* written */
            iload 4 /* read */
            iadd
            istore 5 /* written */
         9: .line 79
            aload 0 /* this */
            iload 5 /* written */
            i2l
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.checkSize:(J)V
        10: .line 80
            aload 1 /* inputStream */
            aload 3 /* bytes */
            invokevirtual java.io.InputStream.read:([B)I
            istore 4 /* read */
        11: .line 76
      StackMap locals:
      StackMap stack:
            iload 4 /* read */
            ifgt 7
        12: .line 82
            aload 0 /* this */
            iload 5 /* written */
            i2l
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
        13: .line 83
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            lconst_0
            lcmp
            ifle 15
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
            lcmp
            ifge 15
        14: .line 84
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Out of size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " > "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        15: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnull 17
        16: .line 87
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        17: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* buffer */
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
        18: .line 90
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.setCompleted:()V
        19: .line 91
            return
        end local 5 // int written
        end local 4 // int read
        end local 3 // byte[] bytes
        end local 2 // io.netty.buffer.ByteBuf buffer
        end local 1 // java.io.InputStream inputStream
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   20     0         this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0   20     1  inputStream  Ljava/io/InputStream;
            3   20     2       buffer  Lio/netty/buffer/ByteBuf;
            4   20     3        bytes  [B
            5   20     4         read  I
            6   20     5      written  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      inputStream  

  public void addContent(io.netty.buffer.ByteBuf, boolean);
    descriptor: (Lio/netty/buffer/ByteBuf;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // io.netty.buffer.ByteBuf buffer
        start local 2 // boolean last
         0: .line 96
            aload 1 /* buffer */
            ifnull 18
         1: .line 97
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            i2l
            lstore 3 /* localsize */
        start local 3 // long localsize
         2: .line 98
            aload 0 /* this */
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
            lload 3 /* localsize */
            ladd
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.checkSize:(J)V
         3: .line 99
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            lconst_0
            lcmp
            ifle 7
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
            lload 3 /* localsize */
            ladd
            lcmp
            ifge 7
         4: .line 100
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Out of size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
            lload 3 /* localsize */
            ladd
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
         5: .line 101
            ldc " > "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.definedSize:J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 100
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 103
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            dup
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
            lload 3 /* localsize */
            ladd
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
         8: .line 104
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnonnull 11
         9: .line 105
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
        10: .line 106
            goto 18
      StackMap locals:
      StackMap stack:
        11: aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            instanceof io.netty.buffer.CompositeByteBuf
            ifeq 15
        12: .line 107
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            checkcast io.netty.buffer.CompositeByteBuf
            astore 5 /* cbb */
        start local 5 // io.netty.buffer.CompositeByteBuf cbb
        13: .line 108
            aload 5 /* cbb */
            iconst_1
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.CompositeByteBuf.addComponent:(ZLio/netty/buffer/ByteBuf;)Lio/netty/buffer/CompositeByteBuf;
            pop
        end local 5 // io.netty.buffer.CompositeByteBuf cbb
        14: .line 109
            goto 18
        15: .line 110
      StackMap locals:
      StackMap stack:
            ldc 2147483647
            invokestatic io.netty.buffer.Unpooled.compositeBuffer:(I)Lio/netty/buffer/CompositeByteBuf;
            astore 5 /* cbb */
        start local 5 // io.netty.buffer.CompositeByteBuf cbb
        16: .line 111
            aload 5 /* cbb */
            iconst_1
            iconst_2
            anewarray io.netty.buffer.ByteBuf
            dup
            iconst_0
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            aastore
            dup
            iconst_1
            aload 1 /* buffer */
            aastore
            invokevirtual io.netty.buffer.CompositeByteBuf.addComponents:(Z[Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/CompositeByteBuf;
            pop
        17: .line 112
            aload 0 /* this */
            aload 5 /* cbb */
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
        end local 5 // io.netty.buffer.CompositeByteBuf cbb
        end local 3 // long localsize
        18: .line 115
      StackMap locals:
      StackMap stack:
            iload 2 /* last */
            ifeq 21
        19: .line 116
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.setCompleted:()V
        20: .line 117
            goto 23
        21: .line 118
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            ifnonnull 23
        22: .line 119
            new java.lang.NullPointerException
            dup
            ldc "buffer"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
        23: .line 122
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean last
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   24     0       this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0   24     1     buffer  Lio/netty/buffer/ByteBuf;
            0   24     2       last  Z
            2   18     3  localsize  J
           13   14     5        cbb  Lio/netty/buffer/CompositeByteBuf;
           16   18     5        cbb  Lio/netty/buffer/CompositeByteBuf;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      buffer  
      last    

  public void setContent(java.io.File);
    descriptor: (Ljava/io/File;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // java.io.File file
         0: .line 126
            aload 1 /* file */
            ifnonnull 2
         1: .line 127
            new java.lang.NullPointerException
            dup
            ldc "file"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 129
      StackMap locals:
      StackMap stack:
            aload 1 /* file */
            invokevirtual java.io.File.length:()J
            lstore 2 /* newsize */
        start local 2 // long newsize
         3: .line 130
            lload 2 /* newsize */
            ldc 2147483647
            lcmp
            ifle 7
         4: .line 131
            new java.lang.IllegalArgumentException
            dup
         5: .line 132
            ldc "File too big to be loaded in memory"
         6: .line 131
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 134
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            lload 2 /* newsize */
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.checkSize:(J)V
         8: .line 135
            new java.io.FileInputStream
            dup
            aload 1 /* file */
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 4 /* inputStream */
        start local 4 // java.io.FileInputStream inputStream
         9: .line 136
            aload 4 /* inputStream */
            invokevirtual java.io.FileInputStream.getChannel:()Ljava/nio/channels/FileChannel;
            astore 5 /* fileChannel */
        start local 5 // java.nio.channels.FileChannel fileChannel
        10: .line 137
            lload 2 /* newsize */
            l2i
            newarray 8
            astore 6 /* array */
        start local 6 // byte[] array
        11: .line 138
            aload 6 /* array */
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            astore 7 /* byteBuffer */
        start local 7 // java.nio.ByteBuffer byteBuffer
        12: .line 139
            iconst_0
            istore 8 /* read */
        start local 8 // int read
        13: .line 140
            goto 15
        14: .line 141
      StackMap locals: io.netty.handler.codec.http.multipart.AbstractMemoryHttpData java.io.File long java.io.FileInputStream java.nio.channels.FileChannel byte[] java.nio.ByteBuffer int
      StackMap stack:
            iload 8 /* read */
            aload 5 /* fileChannel */
            aload 7 /* byteBuffer */
            invokevirtual java.nio.channels.FileChannel.read:(Ljava/nio/ByteBuffer;)I
            iadd
            istore 8 /* read */
        15: .line 140
      StackMap locals:
      StackMap stack:
            iload 8 /* read */
            i2l
            lload 2 /* newsize */
            lcmp
            iflt 14
        16: .line 143
            aload 5 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        17: .line 144
            aload 4 /* inputStream */
            invokevirtual java.io.FileInputStream.close:()V
        18: .line 145
            aload 7 /* byteBuffer */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/Buffer;
            pop
        19: .line 146
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnull 21
        20: .line 147
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
        21: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc 2147483647
            iconst_1
            anewarray java.nio.ByteBuffer
            dup
            iconst_0
            aload 7 /* byteBuffer */
            aastore
            invokestatic io.netty.buffer.Unpooled.wrappedBuffer:(I[Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
        22: .line 150
            aload 0 /* this */
            lload 2 /* newsize */
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.size:J
        23: .line 151
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.setCompleted:()V
        24: .line 152
            return
        end local 8 // int read
        end local 7 // java.nio.ByteBuffer byteBuffer
        end local 6 // byte[] array
        end local 5 // java.nio.channels.FileChannel fileChannel
        end local 4 // java.io.FileInputStream inputStream
        end local 2 // long newsize
        end local 1 // java.io.File file
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   25     0         this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0   25     1         file  Ljava/io/File;
            3   25     2      newsize  J
            9   25     4  inputStream  Ljava/io/FileInputStream;
           10   25     5  fileChannel  Ljava/nio/channels/FileChannel;
           11   25     6        array  [B
           12   25     7   byteBuffer  Ljava/nio/ByteBuffer;
           13   25     8         read  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      file  

  public void delete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 156
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnull 3
         1: .line 157
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.release:()Z
            pop
         2: .line 158
            aload 0 /* this */
            aconst_null
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
         3: .line 160
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;

  public byte[] get();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 164
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnonnull 2
         1: .line 165
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.array:()[B
            areturn
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            newarray 8
            astore 1 /* array */
        start local 1 // byte[] array
         3: .line 168
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readerIndex:()I
            aload 1 /* array */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[B)Lio/netty/buffer/ByteBuf;
            pop
         4: .line 169
            aload 1 /* array */
            areturn
        end local 1 // byte[] array
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            3    5     1  array  [B

  public java.lang.String getString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 174
            aload 0 /* this */
            getstatic io.netty.handler.codec.http.HttpConstants.DEFAULT_CHARSET:Ljava/nio/charset/Charset;
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.getString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;

  public java.lang.String getString(java.nio.charset.Charset);
    descriptor: (Ljava/nio/charset/Charset;)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // java.nio.charset.Charset encoding
         0: .line 179
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnonnull 2
         1: .line 180
            ldc ""
            areturn
         2: .line 182
      StackMap locals:
      StackMap stack:
            aload 1 /* encoding */
            ifnonnull 4
         3: .line 183
            getstatic io.netty.handler.codec.http.HttpConstants.DEFAULT_CHARSET:Ljava/nio/charset/Charset;
            astore 1 /* encoding */
         4: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            aload 1 /* encoding */
            invokevirtual io.netty.buffer.ByteBuf.toString:(Ljava/nio/charset/Charset;)Ljava/lang/String;
            areturn
        end local 1 // java.nio.charset.Charset encoding
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0    5     1  encoding  Ljava/nio/charset/Charset;
    MethodParameters:
          Name  Flags
      encoding  

  public io.netty.buffer.ByteBuf getByteBuf();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 195
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;

  public io.netty.buffer.ByteBuf getChunk(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // int length
         0: .line 200
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnull 1
            iload 1 /* length */
            ifeq 1
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            ifne 3
         1: .line 201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.chunkPosition:I
         2: .line 202
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            areturn
         3: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.chunkPosition:I
            isub
            istore 2 /* sizeLeft */
        start local 2 // int sizeLeft
         4: .line 205
            iload 2 /* sizeLeft */
            ifne 7
         5: .line 206
            aload 0 /* this */
            iconst_0
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.chunkPosition:I
         6: .line 207
            getstatic io.netty.buffer.Unpooled.EMPTY_BUFFER:Lio/netty/buffer/ByteBuf;
            areturn
         7: .line 209
      StackMap locals: int
      StackMap stack:
            iload 1 /* length */
            istore 3 /* sliceLength */
        start local 3 // int sliceLength
         8: .line 210
            iload 2 /* sizeLeft */
            iload 1 /* length */
            if_icmpge 10
         9: .line 211
            iload 2 /* sizeLeft */
            istore 3 /* sliceLength */
        10: .line 213
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.chunkPosition:I
            iload 3 /* sliceLength */
            invokevirtual io.netty.buffer.ByteBuf.retainedSlice:(II)Lio/netty/buffer/ByteBuf;
            astore 4 /* chunk */
        start local 4 // io.netty.buffer.ByteBuf chunk
        11: .line 214
            aload 0 /* this */
            dup
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.chunkPosition:I
            iload 3 /* sliceLength */
            iadd
            putfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.chunkPosition:I
        12: .line 215
            aload 4 /* chunk */
            areturn
        end local 4 // io.netty.buffer.ByteBuf chunk
        end local 3 // int sliceLength
        end local 2 // int sizeLeft
        end local 1 // int length
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0   13     1       length  I
            4   13     2     sizeLeft  I
            8   13     3  sliceLength  I
           11   13     4        chunk  Lio/netty/buffer/ByteBuf;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      length  

  public boolean isInMemory();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 220
            iconst_1
            ireturn
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;

  public boolean renameTo(java.io.File);
    descriptor: (Ljava/io/File;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // java.io.File dest
         0: .line 225
            aload 1 /* dest */
            ifnonnull 2
         1: .line 226
            new java.lang.NullPointerException
            dup
            ldc "dest"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnonnull 6
         3: .line 230
            aload 1 /* dest */
            invokevirtual java.io.File.createNewFile:()Z
            ifne 5
         4: .line 231
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "file exists already: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* dest */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 233
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
         6: .line 235
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.readableBytes:()I
            istore 2 /* length */
        start local 2 // int length
         7: .line 236
            new java.io.FileOutputStream
            dup
            aload 1 /* dest */
            invokespecial java.io.FileOutputStream.<init>:(Ljava/io/File;)V
            astore 3 /* outputStream */
        start local 3 // java.io.FileOutputStream outputStream
         8: .line 237
            aload 3 /* outputStream */
            invokevirtual java.io.FileOutputStream.getChannel:()Ljava/nio/channels/FileChannel;
            astore 4 /* fileChannel */
        start local 4 // java.nio.channels.FileChannel fileChannel
         9: .line 238
            iconst_0
            istore 5 /* written */
        start local 5 // int written
        10: .line 239
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            iconst_1
            if_icmpne 16
        11: .line 240
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:()Ljava/nio/ByteBuffer;
            astore 6 /* byteBuffer */
        start local 6 // java.nio.ByteBuffer byteBuffer
        12: .line 241
            goto 14
        13: .line 242
      StackMap locals: io.netty.handler.codec.http.multipart.AbstractMemoryHttpData java.io.File int java.io.FileOutputStream java.nio.channels.FileChannel int java.nio.ByteBuffer
      StackMap stack:
            iload 5 /* written */
            aload 4 /* fileChannel */
            aload 6 /* byteBuffer */
            invokevirtual java.nio.channels.FileChannel.write:(Ljava/nio/ByteBuffer;)I
            iadd
            istore 5 /* written */
        14: .line 241
      StackMap locals:
      StackMap stack:
            iload 5 /* written */
            iload 2 /* length */
            if_icmplt 13
        end local 6 // java.nio.ByteBuffer byteBuffer
        15: .line 244
            goto 20
        16: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:()[Ljava/nio/ByteBuffer;
            astore 6 /* byteBuffers */
        start local 6 // java.nio.ByteBuffer[] byteBuffers
        17: .line 246
            goto 19
        18: .line 247
      StackMap locals: java.nio.ByteBuffer[]
      StackMap stack:
            iload 5 /* written */
            i2l
            aload 4 /* fileChannel */
            aload 6 /* byteBuffers */
            invokevirtual java.nio.channels.FileChannel.write:([Ljava/nio/ByteBuffer;)J
            ladd
            l2i
            istore 5 /* written */
        19: .line 246
      StackMap locals:
      StackMap stack:
            iload 5 /* written */
            iload 2 /* length */
            if_icmplt 18
        end local 6 // java.nio.ByteBuffer[] byteBuffers
        20: .line 251
      StackMap locals:
      StackMap stack:
            aload 4 /* fileChannel */
            iconst_0
            invokevirtual java.nio.channels.FileChannel.force:(Z)V
        21: .line 252
            aload 4 /* fileChannel */
            invokevirtual java.nio.channels.FileChannel.close:()V
        22: .line 253
            aload 3 /* outputStream */
            invokevirtual java.io.FileOutputStream.close:()V
        23: .line 254
            iload 5 /* written */
            iload 2 /* length */
            if_icmpne 24
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        24: iconst_0
            ireturn
        end local 5 // int written
        end local 4 // java.nio.channels.FileChannel fileChannel
        end local 3 // java.io.FileOutputStream outputStream
        end local 2 // int length
        end local 1 // java.io.File dest
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   25     0          this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0   25     1          dest  Ljava/io/File;
            7   25     2        length  I
            8   25     3  outputStream  Ljava/io/FileOutputStream;
            9   25     4   fileChannel  Ljava/nio/channels/FileChannel;
           10   25     5       written  I
           12   15     6    byteBuffer  Ljava/nio/ByteBuffer;
           17   20     6   byteBuffers  [Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dest  

  public java.io.File getFile();
    descriptor: ()Ljava/io/File;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 259
            new java.io.IOException
            dup
            ldc "Not represented by a file"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
    Exceptions:
      throws java.io.IOException

  public io.netty.handler.codec.http.multipart.HttpData touch();
    descriptor: ()Lio/netty/handler/codec/http/multipart/HttpData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
         0: .line 264
            aload 0 /* this */
            aconst_null
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:(Ljava/lang/Object;)Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;

  public io.netty.handler.codec.http.multipart.HttpData touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/handler/codec/http/multipart/HttpData;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
        start local 1 // java.lang.Object hint
         0: .line 269
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            ifnull 2
         1: .line 270
            aload 0 /* this */
            getfield io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.byteBuf:Lio/netty/buffer/ByteBuf;
            aload 1 /* hint */
            invokevirtual io.netty.buffer.ByteBuf.touch:(Ljava/lang/Object;)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 272
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Object hint
        end local 0 // io.netty.handler.codec.http.multipart.AbstractMemoryHttpData this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/codec/http/multipart/AbstractMemoryHttpData;
            0    3     1  hint  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      hint  

  public io.netty.util.ReferenceCounted touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:(Ljava/lang/Object;)Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.handler.codec.http.multipart.InterfaceHttpData touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/handler/codec/http/multipart/InterfaceHttpData;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:(Ljava/lang/Object;)Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.buffer.ByteBufHolder touch(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lio/netty/buffer/ByteBufHolder;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:(Ljava/lang/Object;)Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.util.ReferenceCounted touch();
    descriptor: ()Lio/netty/util/ReferenceCounted;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:()Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.handler.codec.http.multipart.InterfaceHttpData touch();
    descriptor: ()Lio/netty/handler/codec/http/multipart/InterfaceHttpData;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:()Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.netty.buffer.ByteBufHolder touch();
    descriptor: ()Lio/netty/buffer/ByteBufHolder;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.netty.handler.codec.http.multipart.AbstractMemoryHttpData.touch:()Lio/netty/handler/codec/http/multipart/HttpData;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "AbstractMemoryHttpData.java"