public class org.eclipse.jgit.util.RefList$Builder<T extends org.eclipse.jgit.lib.Ref>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.util.RefList$Builder
  super_class: java.lang.Object
{
  private org.eclipse.jgit.lib.Ref[] list;
    descriptor: [Lorg/eclipse/jgit/lib/Ref;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
         0: .line 344
            aload 0 /* this */
            bipush 16
            invokespecial org.eclipse.jgit.util.RefList$Builder.<init>:(I)V
         1: .line 345
            return
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // int capacity
         0: .line 354
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 355
            aload 0 /* this */
            iload 1 /* capacity */
            bipush 16
            invokestatic java.lang.Math.max:(II)I
            anewarray org.eclipse.jgit.lib.Ref
            putfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
         2: .line 356
            return
        end local 1 // int capacity
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    3     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
         0: .line 360
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            ireturn
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;

  public T get();
    descriptor: (I)Lorg/eclipse/jgit/lib/Ref;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // int idx
         0: .line 372
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 1 /* idx */
            aaload
            areturn
        end local 1 // int idx
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    1     1   idx  I
    Signature: (I)TT;
    MethodParameters:
      Name  Flags
      idx   

  public void remove(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // int idx
         0: .line 382
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 1 /* idx */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 1 /* idx */
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iload 1 /* idx */
            iconst_1
            iadd
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         1: .line 383
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iconst_1
            isub
            putfield org.eclipse.jgit.util.RefList$Builder.size:I
         2: .line 384
            return
        end local 1 // int idx
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    3     1   idx  I
    MethodParameters:
      Name  Flags
      idx   

  public void add();
    descriptor: (Lorg/eclipse/jgit/lib/Ref;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // org.eclipse.jgit.lib.Ref ref
         0: .line 395
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            if_icmpne 4
         1: .line 396
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iconst_2
            imul
            anewarray org.eclipse.jgit.lib.Ref
            astore 2 /* n */
        start local 2 // org.eclipse.jgit.lib.Ref[] n
         2: .line 397
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iconst_0
            aload 2 /* n */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 398
            aload 0 /* this */
            aload 2 /* n */
            putfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
        end local 2 // org.eclipse.jgit.lib.Ref[] n
         4: .line 400
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            dup_x1
            iconst_1
            iadd
            putfield org.eclipse.jgit.util.RefList$Builder.size:I
            aload 1 /* ref */
            aastore
         5: .line 401
            return
        end local 1 // org.eclipse.jgit.lib.Ref ref
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    6     1   ref  TT;
            2    4     2     n  [Lorg/eclipse/jgit/lib/Ref;
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      ref   

  public void addAll(org.eclipse.jgit.util.RefList$Builder);
    descriptor: (Lorg/eclipse/jgit/util/RefList$Builder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // org.eclipse.jgit.util.RefList$Builder other
         0: .line 410
            aload 0 /* this */
            aload 1 /* other */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iconst_0
            aload 1 /* other */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            invokevirtual org.eclipse.jgit.util.RefList$Builder.addAll:([Lorg/eclipse/jgit/lib/Ref;II)V
         1: .line 411
            return
        end local 1 // org.eclipse.jgit.util.RefList$Builder other
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    2     1  other  Lorg/eclipse/jgit/util/RefList$Builder;
    MethodParameters:
       Name  Flags
      other  

  public void addAll(org.eclipse.jgit.lib.Ref[], int, int);
    descriptor: ([Lorg/eclipse/jgit/lib/Ref;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // org.eclipse.jgit.lib.Ref[] src
        start local 2 // int off
        start local 3 // int cnt
         0: .line 427
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            arraylength
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iload 3 /* cnt */
            iadd
            if_icmpge 4
         1: .line 428
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iconst_2
            imul
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iload 3 /* cnt */
            iadd
            invokestatic java.lang.Math.max:(II)I
            anewarray org.eclipse.jgit.lib.Ref
            astore 4 /* n */
        start local 4 // org.eclipse.jgit.lib.Ref[] n
         2: .line 429
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iconst_0
            aload 4 /* n */
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 430
            aload 0 /* this */
            aload 4 /* n */
            putfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
        end local 4 // org.eclipse.jgit.lib.Ref[] n
         4: .line 432
      StackMap locals:
      StackMap stack:
            aload 1 /* src */
            iload 2 /* off */
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iload 3 /* cnt */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 433
            aload 0 /* this */
            dup
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            iload 3 /* cnt */
            iadd
            putfield org.eclipse.jgit.util.RefList$Builder.size:I
         6: .line 434
            return
        end local 3 // int cnt
        end local 2 // int off
        end local 1 // org.eclipse.jgit.lib.Ref[] src
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    7     1   src  [Lorg/eclipse/jgit/lib/Ref;
            0    7     2   off  I
            0    7     3   cnt  I
            2    4     4     n  [Lorg/eclipse/jgit/lib/Ref;
    MethodParameters:
      Name  Flags
      src   
      off   
      cnt   

  public void set(int, );
    descriptor: (ILorg/eclipse/jgit/lib/Ref;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // int idx
        start local 2 // org.eclipse.jgit.lib.Ref ref
         0: .line 445
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 1 /* idx */
            aload 2 /* ref */
            aastore
         1: .line 446
            return
        end local 2 // org.eclipse.jgit.lib.Ref ref
        end local 1 // int idx
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0    2     1   idx  I
            0    2     2   ref  TT;
    Signature: (ITT;)V
    MethodParameters:
      Name  Flags
      idx   
      ref   

  public void sort();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
         0: .line 450
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            getstatic org.eclipse.jgit.lib.RefComparator.INSTANCE:Lorg/eclipse/jgit/lib/RefComparator;
            invokestatic java.util.Arrays.sort:([Ljava/lang/Object;IILjava/util/Comparator;)V
         1: .line 451
            return
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;

  void dedupe(java.util.function.BinaryOperator<T>);
    descriptor: (Ljava/util/function/BinaryOperator;)V
    flags: (0x0000) 
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
        start local 1 // java.util.function.BinaryOperator mergeFunction
         0: .line 460
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            ifne 2
         1: .line 461
            return
         2: .line 463
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* lastElement */
        start local 2 // int lastElement
         3: .line 464
            iconst_1
            istore 3 /* i */
        start local 3 // int i
         4: goto 15
         5: .line 465
      StackMap locals: int int
      StackMap stack:
            getstatic org.eclipse.jgit.lib.RefComparator.INSTANCE:Lorg/eclipse/jgit/lib/RefComparator;
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 2 /* lastElement */
            aaload
         6: .line 466
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 3 /* i */
            aaload
         7: .line 465
            invokevirtual org.eclipse.jgit.lib.RefComparator.compare:(Lorg/eclipse/jgit/lib/Ref;Lorg/eclipse/jgit/lib/Ref;)I
            ifne 12
         8: .line 467
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 2 /* lastElement */
            aload 1 /* mergeFunction */
         9: .line 468
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 2 /* lastElement */
            aaload
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 3 /* i */
            aaload
            invokeinterface java.util.function.BinaryOperator.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.jgit.lib.Ref
        10: .line 467
            aastore
        11: .line 469
            goto 14
        12: .line 470
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 2 /* lastElement */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            iload 3 /* i */
            aaload
            aastore
        13: .line 471
            iinc 2 /* lastElement */ 1
        14: .line 464
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            if_icmplt 5
        end local 3 // int i
        16: .line 474
            aload 0 /* this */
            iload 2 /* lastElement */
            iconst_1
            iadd
            putfield org.eclipse.jgit.util.RefList$Builder.size:I
        17: .line 475
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            arraylength
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
        18: .line 476
            return
        end local 2 // int lastElement
        end local 1 // java.util.function.BinaryOperator mergeFunction
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   19     0           this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
            0   19     1  mergeFunction  Ljava/util/function/BinaryOperator<TT;>;
            3   19     2    lastElement  I
            4   16     3              i  I
    Signature: (Ljava/util/function/BinaryOperator<TT;>;)V
    MethodParameters:
               Name  Flags
      mergeFunction  

  public org.eclipse.jgit.util.RefList<T> toRefList();
    descriptor: ()Lorg/eclipse/jgit/util/RefList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
         0: .line 480
            new org.eclipse.jgit.util.RefList
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.list:[Lorg/eclipse/jgit/lib/Ref;
            aload 0 /* this */
            getfield org.eclipse.jgit.util.RefList$Builder.size:I
            invokespecial org.eclipse.jgit.util.RefList.<init>:([Lorg/eclipse/jgit/lib/Ref;I)V
            areturn
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
    Signature: ()Lorg/eclipse/jgit/util/RefList<TT;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.util.RefList$Builder this
         0: .line 485
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.util.RefList$Builder.toRefList:()Lorg/eclipse/jgit/util/RefList;
            invokevirtual org.eclipse.jgit.util.RefList.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jgit.util.RefList$Builder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/util/RefList$Builder<TT;>;
}
Signature: <T::Lorg/eclipse/jgit/lib/Ref;>Ljava/lang/Object;
SourceFile: "RefList.java"
NestHost: org.eclipse.jgit.util.RefList
InnerClasses:
  public Builder = org.eclipse.jgit.util.RefList$Builder of org.eclipse.jgit.util.RefList