class org.apache.commons.collections.list.TreeList$AVLNode
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.collections.list.TreeList$AVLNode
  super_class: java.lang.Object
{
  private org.apache.commons.collections.list.TreeList$AVLNode left;
    descriptor: Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE

  private boolean leftIsPrevious;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private org.apache.commons.collections.list.TreeList$AVLNode right;
    descriptor: Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE

  private boolean rightIsNext;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.lang.Object value;
    descriptor: Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  private void <init>(int, java.lang.Object, org.apache.commons.collections.list.TreeList$AVLNode, org.apache.commons.collections.list.TreeList$AVLNode);
    descriptor: (ILjava/lang/Object;Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // int relativePosition
        start local 2 // java.lang.Object obj
        start local 3 // org.apache.commons.collections.list.TreeList$AVLNode rightFollower
        start local 4 // org.apache.commons.collections.list.TreeList$AVLNode leftFollower
         0: .line 290
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 291
            aload 0 /* this */
            iload 1 /* relativePosition */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         2: .line 292
            aload 0 /* this */
            aload 2 /* obj */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
         3: .line 293
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
         4: .line 294
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
         5: .line 295
            aload 0 /* this */
            aload 3 /* rightFollower */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         6: .line 296
            aload 0 /* this */
            aload 4 /* leftFollower */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         7: .line 297
            return
        end local 4 // org.apache.commons.collections.list.TreeList$AVLNode leftFollower
        end local 3 // org.apache.commons.collections.list.TreeList$AVLNode rightFollower
        end local 2 // java.lang.Object obj
        end local 1 // int relativePosition
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    8     0              this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    8     1  relativePosition  I
            0    8     2               obj  Ljava/lang/Object;
            0    8     3     rightFollower  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    8     4      leftFollower  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
                  Name  Flags
      relativePosition  
      obj               
      rightFollower     
      leftFollower      

  java.lang.Object getValue();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 305
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  void setValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // java.lang.Object obj
         0: .line 314
            aload 0 /* this */
            aload 1 /* obj */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
         1: .line 315
            return
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    2     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  org.apache.commons.collections.list.TreeList$AVLNode get(int);
    descriptor: (I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // int index
         0: .line 322
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            isub
            istore 2 /* indexRelativeToMe */
        start local 2 // int indexRelativeToMe
         1: .line 324
            iload 2 /* indexRelativeToMe */
            ifne 3
         2: .line 325
            aload 0 /* this */
            areturn
         3: .line 328
      StackMap locals: int
      StackMap stack:
            iload 2 /* indexRelativeToMe */
            ifge 4
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            goto 5
      StackMap locals:
      StackMap stack:
         4: aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         5: astore 3 /* nextNode */
        start local 3 // org.apache.commons.collections.list.TreeList$AVLNode nextNode
         6: .line 329
            aload 3 /* nextNode */
            ifnonnull 8
         7: .line 330
            aconst_null
            areturn
         8: .line 332
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack:
            aload 3 /* nextNode */
            iload 2 /* indexRelativeToMe */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.get:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 3 // org.apache.commons.collections.list.TreeList$AVLNode nextNode
        end local 2 // int indexRelativeToMe
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    9     0               this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    9     1              index  I
            1    9     2  indexRelativeToMe  I
            6    9     3           nextNode  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
       Name  Flags
      index  

  int indexOf(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // java.lang.Object object
        start local 2 // int index
         0: .line 339
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 4
         1: .line 340
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* object */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iadd
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.indexOf:(Ljava/lang/Object;I)I
            istore 3 /* result */
        start local 3 // int result
         2: .line 341
            iload 3 /* result */
            iconst_m1
            if_icmpeq 4
         3: .line 342
            iload 3 /* result */
            ireturn
        end local 3 // int result
         4: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            ifnonnull 5
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            aload 1 /* object */
            if_acmpne 7
            goto 6
      StackMap locals:
      StackMap stack:
         5: aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            aload 1 /* object */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 346
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            ireturn
         7: .line 348
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 9
         8: .line 349
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* object */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iadd
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.indexOf:(Ljava/lang/Object;I)I
            ireturn
         9: .line 351
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 2 // int index
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0   10     1  object  Ljava/lang/Object;
            0   10     2   index  I
            2    4     3  result  I
    MethodParameters:
        Name  Flags
      object  
      index   

  void toArray(java.lang.Object[], int);
    descriptor: ([Ljava/lang/Object;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // java.lang.Object[] array
        start local 2 // int index
         0: .line 361
            aload 1 /* array */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            aastore
         1: .line 362
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 3
         2: .line 363
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* array */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iadd
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.toArray:([Ljava/lang/Object;I)V
         3: .line 365
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 5
         4: .line 366
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 1 /* array */
            iload 2 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iadd
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.toArray:([Ljava/lang/Object;I)V
         5: .line 368
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int index
        end local 1 // java.lang.Object[] array
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    6     1  array  [Ljava/lang/Object;
            0    6     2  index  I
    MethodParameters:
       Name  Flags
      array  
      index  

  org.apache.commons.collections.list.TreeList$AVLNode next();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 376
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
         1: .line 377
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         2: .line 379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.min:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  org.apache.commons.collections.list.TreeList$AVLNode previous();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 388
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
         1: .line 389
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         2: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.max:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  org.apache.commons.collections.list.TreeList$AVLNode insert(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // int index
        start local 2 // java.lang.Object obj
         0: .line 402
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            isub
            istore 3 /* indexRelativeToMe */
        start local 3 // int indexRelativeToMe
         1: .line 404
            iload 3 /* indexRelativeToMe */
            ifgt 3
         2: .line 405
            aload 0 /* this */
            iload 3 /* indexRelativeToMe */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.insertOnLeft:(ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         3: .line 407
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* indexRelativeToMe */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.insertOnRight:(ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 3 // int indexRelativeToMe
        end local 2 // java.lang.Object obj
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    4     1              index  I
            0    4     2                obj  Ljava/lang/Object;
            1    4     3  indexRelativeToMe  I
    MethodParameters:
       Name  Flags
      index  
      obj    

  private org.apache.commons.collections.list.TreeList$AVLNode insertOnLeft(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // int indexRelativeToMe
        start local 2 // java.lang.Object obj
         0: .line 412
            aload 0 /* this */
            astore 3 /* ret */
        start local 3 // org.apache.commons.collections.list.TreeList$AVLNode ret
         1: .line 414
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 4
         2: .line 415
            aload 0 /* this */
            new org.apache.commons.collections.list.TreeList$AVLNode
            dup
            iconst_m1
            aload 2 /* obj */
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokespecial org.apache.commons.collections.list.TreeList$AVLNode.<init>:(ILjava/lang/Object;Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         3: .line 416
            goto 5
         4: .line 417
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 1 /* indexRelativeToMe */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.insert:(ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         5: .line 420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iflt 7
         6: .line 421
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         7: .line 423
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.balance:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 3 /* ret */
         8: .line 424
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
         9: .line 425
            aload 3 /* ret */
            areturn
        end local 3 // org.apache.commons.collections.list.TreeList$AVLNode ret
        end local 2 // java.lang.Object obj
        end local 1 // int indexRelativeToMe
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0   10     1  indexRelativeToMe  I
            0   10     2                obj  Ljava/lang/Object;
            1   10     3                ret  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
                   Name  Flags
      indexRelativeToMe  
      obj                

  private org.apache.commons.collections.list.TreeList$AVLNode insertOnRight(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // int indexRelativeToMe
        start local 2 // java.lang.Object obj
         0: .line 429
            aload 0 /* this */
            astore 3 /* ret */
        start local 3 // org.apache.commons.collections.list.TreeList$AVLNode ret
         1: .line 431
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 4
         2: .line 432
            aload 0 /* this */
            new org.apache.commons.collections.list.TreeList$AVLNode
            dup
            iconst_1
            aload 2 /* obj */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            invokespecial org.apache.commons.collections.list.TreeList$AVLNode.<init>:(ILjava/lang/Object;Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         3: .line 433
            goto 5
         4: .line 434
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 1 /* indexRelativeToMe */
            aload 2 /* obj */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.insert:(ILjava/lang/Object;)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         5: .line 436
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifge 7
         6: .line 437
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         7: .line 439
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.balance:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 3 /* ret */
         8: .line 440
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
         9: .line 441
            aload 3 /* ret */
            areturn
        end local 3 // org.apache.commons.collections.list.TreeList$AVLNode ret
        end local 2 // java.lang.Object obj
        end local 1 // int indexRelativeToMe
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0               this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0   10     1  indexRelativeToMe  I
            0   10     2                obj  Ljava/lang/Object;
            1   10     3                ret  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
                   Name  Flags
      indexRelativeToMe  
      obj                

  private org.apache.commons.collections.list.TreeList$AVLNode getLeftSubTree();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 449
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         2: areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode getRightSubTree();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 456
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         2: areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode max();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 465
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 1
            aload 0 /* this */
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.max:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         2: areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode min();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 474
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 1
            aload 0 /* this */
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.min:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         2: areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  org.apache.commons.collections.list.TreeList$AVLNode remove(int);
    descriptor: (I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // int index
         0: .line 484
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            isub
            istore 2 /* indexRelativeToMe */
        start local 2 // int indexRelativeToMe
         1: .line 486
            iload 2 /* indexRelativeToMe */
            ifne 3
         2: .line 487
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeSelf:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         3: .line 489
      StackMap locals: int
      StackMap stack:
            iload 2 /* indexRelativeToMe */
            ifle 8
         4: .line 490
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 2 /* indexRelativeToMe */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.remove:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         5: .line 491
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifge 11
         6: .line 492
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         7: .line 494
            goto 11
         8: .line 495
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            iload 2 /* indexRelativeToMe */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.remove:(I)Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         9: .line 496
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifle 11
        10: .line 497
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
        11: .line 500
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
        12: .line 501
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.balance:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 2 // int indexRelativeToMe
        end local 1 // int index
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   13     0               this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0   13     1              index  I
            1   13     2  indexRelativeToMe  I
    MethodParameters:
       Name  Flags
      index  

  private org.apache.commons.collections.list.TreeList$AVLNode removeMax();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 505
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
         1: .line 506
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeSelf:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         2: .line 508
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeMax:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         3: .line 509
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifge 5
         4: .line 510
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         5: .line 512
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
         6: .line 513
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.balance:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode removeMin();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 517
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
         1: .line 518
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeSelf:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         2: .line 520
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeMin:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         3: .line 521
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifle 5
         4: .line 522
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         5: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
         6: .line 525
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.balance:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode removeSelf();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 534
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
         1: .line 535
            aconst_null
            areturn
         2: .line 537
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 9
         3: .line 538
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifle 7
         4: .line 539
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifle 5
            iconst_0
            goto 6
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int int
         5: iconst_1
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int int int
         6: iadd
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         7: .line 541
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.max:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aconst_null
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         8: .line 542
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         9: .line 544
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 15
        10: .line 545
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifge 11
            iconst_0
            goto 12
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int int
        11: iconst_1
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int int int
        12: isub
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
        13: .line 546
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.min:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aconst_null
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
        14: .line 547
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
        15: .line 550
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.heightRightMinusLeft:()I
            ifle 24
        16: .line 552
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.min:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 1 /* rightMin */
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode rightMin
        17: .line 553
            aload 0 /* this */
            aload 1 /* rightMin */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            putfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
        18: .line 554
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
            ifeq 20
        19: .line 555
            aload 0 /* this */
            aload 1 /* rightMin */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
        20: .line 557
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeMin:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
        21: .line 558
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifge 35
        22: .line 559
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode rightMin
        23: .line 561
            goto 35
        24: .line 563
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.max:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 1 /* leftMax */
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode leftMax
        25: .line 564
            aload 0 /* this */
            aload 1 /* leftMax */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            putfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
        26: .line 565
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
            ifeq 28
        27: .line 566
            aload 0 /* this */
            aload 1 /* leftMax */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
        28: .line 568
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 2 /* leftPrevious */
        start local 2 // org.apache.commons.collections.list.TreeList$AVLNode leftPrevious
        29: .line 569
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.removeMax:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            putfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
        30: .line 570
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 33
        31: .line 573
            aload 0 /* this */
            aload 2 /* leftPrevious */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
        32: .line 574
            aload 0 /* this */
            iconst_1
            putfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
        33: .line 576
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ifle 35
        34: .line 577
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            iconst_1
            isub
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
        end local 2 // org.apache.commons.collections.list.TreeList$AVLNode leftPrevious
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode leftMax
        35: .line 580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
        36: .line 581
            aload 0 /* this */
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   37     0          this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
           17   23     1      rightMin  Lorg/apache/commons/collections/list/TreeList$AVLNode;
           25   35     1       leftMax  Lorg/apache/commons/collections/list/TreeList$AVLNode;
           29   35     2  leftPrevious  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode balance();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 589
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.heightRightMinusLeft:()I
            tableswitch { // -2 - 2
                   -2: 2
                   -1: 1
                    0: 1
                    1: 1
                    2: 5
              default: 8
          }
         1: .line 593
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
         2: .line 595
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.heightRightMinusLeft:()I
            ifle 4
         3: .line 596
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.rotateLeft:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         4: .line 598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.rotateRight:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         5: .line 600
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.heightRightMinusLeft:()I
            ifge 7
         6: .line 601
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.rotateRight:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         7: .line 603
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.rotateLeft:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            areturn
         8: .line 605
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            ldc "tree inconsistent!"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private int getOffset(org.apache.commons.collections.list.TreeList$AVLNode);
    descriptor: (Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
         0: .line 613
            aload 1 /* node */
            ifnonnull 2
         1: .line 614
            iconst_0
            ireturn
         2: .line 616
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ireturn
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    3     1  node  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
      Name  Flags
      node  

  private int setOffset(org.apache.commons.collections.list.TreeList$AVLNode, int);
    descriptor: (Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        start local 2 // int newOffest
         0: .line 623
            aload 1 /* node */
            ifnonnull 2
         1: .line 624
            iconst_0
            ireturn
         2: .line 626
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            istore 3 /* oldOffset */
        start local 3 // int oldOffset
         3: .line 627
            aload 1 /* node */
            iload 2 /* newOffest */
            putfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
         4: .line 628
            iload 3 /* oldOffset */
            ireturn
        end local 3 // int oldOffset
        end local 2 // int newOffest
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    5     1       node  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    5     2  newOffest  I
            3    5     3  oldOffset  I
    MethodParameters:
           Name  Flags
      node       
      newOffest  

  private void recalcHeight();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 635
            aload 0 /* this */
         1: .line 636
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 2
            iconst_m1
            goto 3
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         2: aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.height:I
         3: .line 637
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnonnull 4
            iconst_m1
            goto 5
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int
         4: aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            getfield org.apache.commons.collections.list.TreeList$AVLNode.height:I
         5: .line 635
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int int
            invokestatic java.lang.Math.max:(II)I
         6: .line 637
            iconst_1
         7: .line 635
            iadd
            putfield org.apache.commons.collections.list.TreeList$AVLNode.height:I
         8: .line 638
            return
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private int getHeight(org.apache.commons.collections.list.TreeList$AVLNode);
    descriptor: (Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
         0: .line 644
            aload 1 /* node */
            ifnonnull 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* node */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.height:I
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    3     1  node  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
      Name  Flags
      node  

  private int heightRightMinusLeft();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 651
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getHeight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getHeight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            isub
            ireturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;

  private org.apache.commons.collections.list.TreeList$AVLNode rotateLeft();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 655
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 1 /* newTop */
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode newTop
         1: .line 656
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 2 /* movedNode */
        start local 2 // org.apache.commons.collections.list.TreeList$AVLNode movedNode
         2: .line 658
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            aload 0 /* this */
            aload 1 /* newTop */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            iadd
            istore 3 /* newTopPosition */
        start local 3 // int newTopPosition
         3: .line 659
            aload 1 /* newTop */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ineg
            istore 4 /* myNewPosition */
        start local 4 // int myNewPosition
         4: .line 660
            aload 0 /* this */
            aload 1 /* newTop */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            aload 0 /* this */
            aload 2 /* movedNode */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            iadd
            istore 5 /* movedPosition */
        start local 5 // int movedPosition
         5: .line 662
            aload 0 /* this */
            aload 2 /* movedNode */
            aload 1 /* newTop */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         6: .line 663
            aload 1 /* newTop */
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         7: .line 665
            aload 0 /* this */
            aload 1 /* newTop */
            iload 3 /* newTopPosition */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
            pop
         8: .line 666
            aload 0 /* this */
            aload 0 /* this */
            iload 4 /* myNewPosition */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
            pop
         9: .line 667
            aload 0 /* this */
            aload 2 /* movedNode */
            iload 5 /* movedPosition */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
            pop
        10: .line 668
            aload 1 /* newTop */
            areturn
        end local 5 // int movedPosition
        end local 4 // int myNewPosition
        end local 3 // int newTopPosition
        end local 2 // org.apache.commons.collections.list.TreeList$AVLNode movedNode
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode newTop
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   11     0            this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            1   11     1          newTop  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            2   11     2       movedNode  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            3   11     3  newTopPosition  I
            4   11     4   myNewPosition  I
            5   11     5   movedPosition  I

  private org.apache.commons.collections.list.TreeList$AVLNode rotateRight();
    descriptor: ()Lorg/apache/commons/collections/list/TreeList$AVLNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 672
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 1 /* newTop */
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode newTop
         1: .line 673
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getLeftSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            astore 2 /* movedNode */
        start local 2 // org.apache.commons.collections.list.TreeList$AVLNode movedNode
         2: .line 675
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            aload 0 /* this */
            aload 1 /* newTop */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            iadd
            istore 3 /* newTopPosition */
        start local 3 // int newTopPosition
         3: .line 676
            aload 1 /* newTop */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            ineg
            istore 4 /* myNewPosition */
        start local 4 // int myNewPosition
         4: .line 677
            aload 0 /* this */
            aload 1 /* newTop */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            aload 0 /* this */
            aload 2 /* movedNode */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;)I
            iadd
            istore 5 /* movedPosition */
        start local 5 // int movedPosition
         5: .line 679
            aload 0 /* this */
            aload 2 /* movedNode */
            aload 1 /* newTop */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setLeft:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         6: .line 680
            aload 1 /* newTop */
            aload 0 /* this */
            aconst_null
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setRight:(Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
         7: .line 682
            aload 0 /* this */
            aload 1 /* newTop */
            iload 3 /* newTopPosition */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
            pop
         8: .line 683
            aload 0 /* this */
            aload 0 /* this */
            iload 4 /* myNewPosition */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
            pop
         9: .line 684
            aload 0 /* this */
            aload 2 /* movedNode */
            iload 5 /* movedPosition */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.setOffset:(Lorg/apache/commons/collections/list/TreeList$AVLNode;I)I
            pop
        10: .line 685
            aload 1 /* newTop */
            areturn
        end local 5 // int movedPosition
        end local 4 // int myNewPosition
        end local 3 // int newTopPosition
        end local 2 // org.apache.commons.collections.list.TreeList$AVLNode movedNode
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode newTop
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   11     0            this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            1   11     1          newTop  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            2   11     2       movedNode  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            3   11     3  newTopPosition  I
            4   11     4   myNewPosition  I
            5   11     5   movedPosition  I

  private void setLeft(org.apache.commons.collections.list.TreeList$AVLNode, org.apache.commons.collections.list.TreeList$AVLNode);
    descriptor: (Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        start local 2 // org.apache.commons.collections.list.TreeList$AVLNode previous
         0: .line 695
            aload 0 /* this */
            aload 1 /* node */
            ifnonnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         1: iconst_0
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int
         2: putfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
         3: .line 696
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.leftIsPrevious:Z
            ifeq 4
            aload 2 /* previous */
            goto 5
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         4: aload 1 /* node */
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode
         5: putfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         6: .line 697
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
         7: .line 698
            return
        end local 2 // org.apache.commons.collections.list.TreeList$AVLNode previous
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    8     1      node  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    8     2  previous  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
          Name  Flags
      node      
      previous  

  private void setRight(org.apache.commons.collections.list.TreeList$AVLNode, org.apache.commons.collections.list.TreeList$AVLNode);
    descriptor: (Lorg/apache/commons/collections/list/TreeList$AVLNode;Lorg/apache/commons/collections/list/TreeList$AVLNode;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
        start local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        start local 2 // org.apache.commons.collections.list.TreeList$AVLNode next
         0: .line 707
            aload 0 /* this */
            aload 1 /* node */
            ifnonnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         1: iconst_0
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode int
         2: putfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
         3: .line 708
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
            ifeq 4
            aload 2 /* next */
            goto 5
      StackMap locals:
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode
         4: aload 1 /* node */
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: org.apache.commons.collections.list.TreeList$AVLNode org.apache.commons.collections.list.TreeList$AVLNode
         5: putfield org.apache.commons.collections.list.TreeList$AVLNode.right:Lorg/apache/commons/collections/list/TreeList$AVLNode;
         6: .line 709
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.recalcHeight:()V
         7: .line 710
            return
        end local 2 // org.apache.commons.collections.list.TreeList$AVLNode next
        end local 1 // org.apache.commons.collections.list.TreeList$AVLNode node
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    8     1  node  Lorg/apache/commons/collections/list/TreeList$AVLNode;
            0    8     2  next  Lorg/apache/commons/collections/list/TreeList$AVLNode;
    MethodParameters:
      Name  Flags
      node  
      next  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
         0: .line 768
            new java.lang.StringBuilder
            dup
            ldc "AVLNode("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.relativePosition:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.left:Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         1: iconst_0
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: java.lang.StringBuilder int
         2: invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.value:Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 769
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.list.TreeList$AVLNode.getRightSubTree:()Lorg/apache/commons/collections/list/TreeList$AVLNode;
            ifnull 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack: java.lang.StringBuilder
         4: iconst_0
      StackMap locals: org.apache.commons.collections.list.TreeList$AVLNode
      StackMap stack: java.lang.StringBuilder int
         5: invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc ", faedelung "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.apache.commons.collections.list.TreeList$AVLNode.rightIsNext:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
            ldc " )"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 768
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.collections.list.TreeList$AVLNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/list/TreeList$AVLNode;
}
SourceFile: "TreeList.java"
NestHost: org.apache.commons.collections.list.TreeList
InnerClasses:
  AVLNode = org.apache.commons.collections.list.TreeList$AVLNode of org.apache.commons.collections.list.TreeList