public class org.springframework.util.ResizableByteArrayOutputStream extends java.io.ByteArrayOutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.util.ResizableByteArrayOutputStream
  super_class: java.io.ByteArrayOutputStream
{
  private static final int DEFAULT_INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 256

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.util.ResizableByteArrayOutputStream this
         0: .line 51
            aload 0 /* this */
            sipush 256
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
         1: .line 52
            return
        end local 0 // org.springframework.util.ResizableByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/util/ResizableByteArrayOutputStream;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.util.ResizableByteArrayOutputStream this
        start local 1 // int initialCapacity
         0: .line 60
            aload 0 /* this */
            iload 1 /* initialCapacity */
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
         1: .line 61
            return
        end local 1 // int initialCapacity
        end local 0 // org.springframework.util.ResizableByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/springframework/util/ResizableByteArrayOutputStream;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public synchronized void resize(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.springframework.util.ResizableByteArrayOutputStream this
        start local 1 // int targetCapacity
         0: .line 72
            iload 1 /* targetCapacity */
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.count:I
            if_icmplt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "New capacity must not be smaller than current size"
            invokestatic org.springframework.util.Assert.isTrue:(ZLjava/lang/String;)V
         3: .line 73
            iload 1 /* targetCapacity */
            newarray 8
            astore 2 /* resizedBuffer */
        start local 2 // byte[] resizedBuffer
         4: .line 74
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.buf:[B
            iconst_0
            aload 2 /* resizedBuffer */
            iconst_0
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.count:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 75
            aload 0 /* this */
            aload 2 /* resizedBuffer */
            putfield org.springframework.util.ResizableByteArrayOutputStream.buf:[B
         6: .line 76
            return
        end local 2 // byte[] resizedBuffer
        end local 1 // int targetCapacity
        end local 0 // org.springframework.util.ResizableByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lorg/springframework/util/ResizableByteArrayOutputStream;
            0    7     1  targetCapacity  I
            4    7     2   resizedBuffer  [B
    MethodParameters:
                Name  Flags
      targetCapacity  

  public synchronized void grow(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.springframework.util.ResizableByteArrayOutputStream this
        start local 1 // int additionalCapacity
         0: .line 84
            iload 1 /* additionalCapacity */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Additional capacity must be 0 or higher"
            invokestatic org.springframework.util.Assert.isTrue:(ZLjava/lang/String;)V
         3: .line 85
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.count:I
            iload 1 /* additionalCapacity */
            iadd
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.buf:[B
            arraylength
            if_icmple 6
         4: .line 86
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.buf:[B
            arraylength
            iconst_2
            imul
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.count:I
            iload 1 /* additionalCapacity */
            iadd
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* newCapacity */
        start local 2 // int newCapacity
         5: .line 87
            aload 0 /* this */
            iload 2 /* newCapacity */
            invokevirtual org.springframework.util.ResizableByteArrayOutputStream.resize:(I)V
        end local 2 // int newCapacity
         6: .line 89
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int additionalCapacity
        end local 0 // org.springframework.util.ResizableByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    7     0                this  Lorg/springframework/util/ResizableByteArrayOutputStream;
            0    7     1  additionalCapacity  I
            5    6     2         newCapacity  I
    MethodParameters:
                    Name  Flags
      additionalCapacity  

  public synchronized int capacity();
    descriptor: ()I
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.util.ResizableByteArrayOutputStream this
         0: .line 95
            aload 0 /* this */
            getfield org.springframework.util.ResizableByteArrayOutputStream.buf:[B
            arraylength
            ireturn
        end local 0 // org.springframework.util.ResizableByteArrayOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/util/ResizableByteArrayOutputStream;
}
SourceFile: "ResizableByteArrayOutputStream.java"