public class org.apache.commons.collections.FastArrayList extends java.util.ArrayList
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.FastArrayList
  super_class: java.util.ArrayList
{
  protected java.util.ArrayList list;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0004) ACC_PROTECTED

  protected boolean fast;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 77
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 117
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         2: .line 126
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.FastArrayList.fast:Z
         3: .line 78
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         4: .line 80
            return
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/collections/FastArrayList;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int capacity
         0: .line 90
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 117
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         2: .line 126
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.FastArrayList.fast:Z
         3: .line 91
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iload 1 /* capacity */
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         4: .line 93
            return
        end local 1 // int capacity
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/collections/FastArrayList;
            0    5     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void <init>(java.util.Collection);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.util.Collection collection
         0: .line 105
            aload 0 /* this */
            invokespecial java.util.ArrayList.<init>:()V
         1: .line 117
            aload 0 /* this */
            aconst_null
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         2: .line 126
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.FastArrayList.fast:Z
         3: .line 106
            aload 0 /* this */
            new java.util.ArrayList
            dup
            aload 1 /* collection */
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         4: .line 108
            return
        end local 1 // java.util.Collection collection
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/apache/commons/collections/FastArrayList;
            0    5     1  collection  Ljava/util/Collection;
    MethodParameters:
            Name  Flags
      collection  

  public boolean getFast();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 135
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ireturn
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections/FastArrayList;

  public void setFast(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // boolean fast
         0: .line 144
            aload 0 /* this */
            iload 1 /* fast */
            putfield org.apache.commons.collections.FastArrayList.fast:Z
         1: .line 145
            return
        end local 1 // boolean fast
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/FastArrayList;
            0    2     1  fast  Z
    MethodParameters:
      Name  Flags
      fast  

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object element
         0: .line 158
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 159
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 160
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 161
            aload 3 /* temp */
            aload 1 /* element */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            istore 4 /* result */
        start local 4 // boolean result
         4: .line 162
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 163
            iload 4 /* result */
            aload 2
            monitorexit
         6: ireturn
        end local 4 // boolean result
        end local 3 // java.util.ArrayList temp
         7: .line 159
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
         9: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 167
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
        11: ireturn
        12: .line 166
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        13: athrow
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1  element  Ljava/lang/Object;
            3    7     3     temp  Ljava/util/ArrayList;
            4    7     4   result  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
         Name  Flags
      element  

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 185
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 186
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         2: .line 187
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 4 /* temp */
        start local 4 // java.util.ArrayList temp
         3: .line 188
            aload 4 /* temp */
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.util.ArrayList.add:(ILjava/lang/Object;)V
         4: .line 189
            aload 0 /* this */
            aload 4 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
        end local 4 // java.util.ArrayList temp
         5: .line 186
            aload 3
            monitorexit
         6: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList int java.lang.Object org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
         7: aload 3
            monitorexit
         8: athrow
         9: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 3
            monitorenter
        10: .line 193
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.util.ArrayList.add:(ILjava/lang/Object;)V
        11: .line 192
            aload 3
            monitorexit
        12: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList int java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
        13: aload 3
            monitorexit
        14: athrow
        15: .line 197
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/apache/commons/collections/FastArrayList;
            0   16     1    index  I
            0   16     2  element  Ljava/lang/Object;
            3    5     4     temp  Ljava/util/ArrayList;
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    12      13  any
          13    14      13  any
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean addAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.util.Collection collection
         0: .line 209
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 210
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 211
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 212
            aload 3 /* temp */
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.addAll:(Ljava/util/Collection;)Z
            istore 4 /* result */
        start local 4 // boolean result
         4: .line 213
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 214
            iload 4 /* result */
            aload 2
            monitorexit
         6: ireturn
        end local 4 // boolean result
        end local 3 // java.util.ArrayList temp
         7: .line 210
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
         9: .line 217
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 218
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.addAll:(Ljava/util/Collection;)Z
            aload 2
            monitorexit
        11: ireturn
        12: .line 217
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        13: athrow
        end local 1 // java.util.Collection collection
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1  collection  Ljava/util/Collection;
            3    7     3        temp  Ljava/util/ArrayList;
            4    7     4      result  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
            Name  Flags
      collection  

  public boolean addAll(int, java.util.Collection);
    descriptor: (ILjava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int index
        start local 2 // java.util.Collection collection
         0: .line 237
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 238
            aload 0 /* this */
            dup
            astore 3
            monitorenter
         2: .line 239
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 4 /* temp */
        start local 4 // java.util.ArrayList temp
         3: .line 240
            aload 4 /* temp */
            iload 1 /* index */
            aload 2 /* collection */
            invokevirtual java.util.ArrayList.addAll:(ILjava/util/Collection;)Z
            istore 5 /* result */
        start local 5 // boolean result
         4: .line 241
            aload 0 /* this */
            aload 4 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 242
            iload 5 /* result */
            aload 3
            monitorexit
         6: ireturn
        end local 5 // boolean result
        end local 4 // java.util.ArrayList temp
         7: .line 238
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.Collection org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         8: athrow
         9: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 3
            monitorenter
        10: .line 246
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            aload 2 /* collection */
            invokevirtual java.util.ArrayList.addAll:(ILjava/util/Collection;)Z
            aload 3
            monitorexit
        11: ireturn
        12: .line 245
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.Collection java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        13: athrow
        end local 2 // java.util.Collection collection
        end local 1 // int index
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1       index  I
            0   14     2  collection  Ljava/util/Collection;
            3    7     4        temp  Ljava/util/ArrayList;
            4    7     5      result  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
            Name  Flags
      index       
      collection  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 262
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 263
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 264
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 2 /* temp */
        start local 2 // java.util.ArrayList temp
         3: .line 265
            aload 2 /* temp */
            invokevirtual java.util.ArrayList.clear:()V
         4: .line 266
            aload 0 /* this */
            aload 2 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
        end local 2 // java.util.ArrayList temp
         5: .line 263
            aload 1
            monitorexit
         6: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
         7: aload 1
            monitorexit
         8: athrow
         9: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 1
            monitorenter
        10: .line 270
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clear:()V
        11: .line 269
            aload 1
            monitorexit
        12: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
        13: aload 1
            monitorexit
        14: athrow
        15: .line 274
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/apache/commons/collections/FastArrayList;
            3    5     2  temp  Ljava/util/ArrayList;
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    12      13  any
          13    14      13  any

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 283
            aconst_null
            astore 1 /* results */
        start local 1 // org.apache.commons.collections.FastArrayList results
         1: .line 284
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 4
         2: .line 285
            new org.apache.commons.collections.FastArrayList
            dup
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokespecial org.apache.commons.collections.FastArrayList.<init>:(Ljava/util/Collection;)V
            astore 1 /* results */
         3: .line 286
            goto 10
         4: .line 287
      StackMap locals: org.apache.commons.collections.FastArrayList
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         5: .line 288
            new org.apache.commons.collections.FastArrayList
            dup
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokespecial org.apache.commons.collections.FastArrayList.<init>:(Ljava/util/Collection;)V
            astore 1 /* results */
         6: .line 287
            aload 2
            monitorexit
         7: goto 10
      StackMap locals: org.apache.commons.collections.FastArrayList org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
         8: aload 2
            monitorexit
         9: athrow
        10: .line 291
      StackMap locals:
      StackMap stack:
            aload 1 /* results */
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.FastArrayList.getFast:()Z
            invokevirtual org.apache.commons.collections.FastArrayList.setFast:(Z)V
        11: .line 292
            aload 1 /* results */
            areturn
        end local 1 // org.apache.commons.collections.FastArrayList results
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lorg/apache/commons/collections/FastArrayList;
            1   12     1  results  Lorg/apache/commons/collections/FastArrayList;
      Exception table:
        from    to  target  type
           5     7       8  any
           8     9       8  any

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object element
         0: .line 304
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 305
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.contains:(Ljava/lang/Object;)Z
            ireturn
         2: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         3: .line 308
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.contains:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
         4: ireturn
         5: .line 307
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1  element  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
         Name  Flags
      element  

  public boolean containsAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.util.Collection collection
         0: .line 323
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 324
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.containsAll:(Ljava/util/Collection;)Z
            ireturn
         2: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         3: .line 327
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.containsAll:(Ljava/util/Collection;)Z
            aload 2
            monitorexit
         4: ireturn
         5: .line 326
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.util.Collection collection
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1  collection  Ljava/util/Collection;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
            Name  Flags
      collection  

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int capacity
         0: .line 343
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 344
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 345
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 346
            aload 3 /* temp */
            iload 1 /* capacity */
            invokevirtual java.util.ArrayList.ensureCapacity:(I)V
         4: .line 347
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
        end local 3 // java.util.ArrayList temp
         5: .line 344
            aload 2
            monitorexit
         6: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList int org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
         7: aload 2
            monitorexit
         8: athrow
         9: .line 350
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 351
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* capacity */
            invokevirtual java.util.ArrayList.ensureCapacity:(I)V
        11: .line 350
            aload 2
            monitorexit
        12: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.ArrayList
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 355
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int capacity
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lorg/apache/commons/collections/FastArrayList;
            0   16     1  capacity  I
            3    5     3      temp  Ljava/util/ArrayList;
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    12      13  any
          13    14      13  any
    MethodParameters:
          Name  Flags
      capacity  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=8, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object o
         0: .line 369
            aload 1 /* o */
            aload 0 /* this */
            if_acmpne 2
         1: .line 370
            iconst_1
            ireturn
         2: .line 371
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof java.util.List
            ifne 4
         3: .line 372
            iconst_0
            ireturn
         4: .line 373
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast java.util.List
            astore 2 /* lo */
        start local 2 // java.util.List lo
         5: .line 376
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 19
         6: .line 377
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.listIterator:()Ljava/util/ListIterator;
            astore 3 /* li1 */
        start local 3 // java.util.ListIterator li1
         7: .line 378
            aload 2 /* lo */
            invokeinterface java.util.List.listIterator:()Ljava/util/ListIterator;
            astore 4 /* li2 */
        start local 4 // java.util.ListIterator li2
         8: .line 379
            goto 14
         9: .line 380
      StackMap locals: java.util.List java.util.ListIterator java.util.ListIterator
      StackMap stack:
            aload 3 /* li1 */
            invokeinterface java.util.ListIterator.next:()Ljava/lang/Object;
            astore 5 /* o1 */
        start local 5 // java.lang.Object o1
        10: .line 381
            aload 4 /* li2 */
            invokeinterface java.util.ListIterator.next:()Ljava/lang/Object;
            astore 6 /* o2 */
        start local 6 // java.lang.Object o2
        11: .line 382
            aload 5 /* o1 */
            ifnonnull 12
            aload 6 /* o2 */
            ifnull 14
            goto 13
      StackMap locals: java.lang.Object java.lang.Object
      StackMap stack:
        12: aload 5 /* o1 */
            aload 6 /* o2 */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 14
        13: .line 383
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 6 // java.lang.Object o2
        end local 5 // java.lang.Object o1
        14: .line 379
      StackMap locals:
      StackMap stack:
            aload 3 /* li1 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifeq 15
            aload 4 /* li2 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifne 9
        15: .line 385
      StackMap locals:
      StackMap stack:
            aload 3 /* li1 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifne 16
            aload 4 /* li2 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifeq 17
      StackMap locals:
      StackMap stack:
        16: iconst_0
            goto 18
      StackMap locals:
      StackMap stack:
        17: iconst_1
      StackMap locals:
      StackMap stack: int
        18: ireturn
        end local 4 // java.util.ListIterator li2
        end local 3 // java.util.ListIterator li1
        19: .line 387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 3
            monitorenter
        20: .line 388
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.listIterator:()Ljava/util/ListIterator;
            astore 4 /* li1 */
        start local 4 // java.util.ListIterator li1
        21: .line 389
            aload 2 /* lo */
            invokeinterface java.util.List.listIterator:()Ljava/util/ListIterator;
            astore 5 /* li2 */
        start local 5 // java.util.ListIterator li2
        22: .line 390
            goto 29
        23: .line 391
      StackMap locals: java.util.ArrayList java.util.ListIterator java.util.ListIterator
      StackMap stack:
            aload 4 /* li1 */
            invokeinterface java.util.ListIterator.next:()Ljava/lang/Object;
            astore 6 /* o1 */
        start local 6 // java.lang.Object o1
        24: .line 392
            aload 5 /* li2 */
            invokeinterface java.util.ListIterator.next:()Ljava/lang/Object;
            astore 7 /* o2 */
        start local 7 // java.lang.Object o2
        25: .line 393
            aload 6 /* o1 */
            ifnonnull 26
            aload 7 /* o2 */
            ifnull 29
            goto 27
      StackMap locals: java.lang.Object java.lang.Object
      StackMap stack:
        26: aload 6 /* o1 */
            aload 7 /* o2 */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 29
        27: .line 394
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
        28: iconst_0
            ireturn
        end local 7 // java.lang.Object o2
        end local 6 // java.lang.Object o1
        29: .line 390
      StackMap locals:
      StackMap stack:
            aload 4 /* li1 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifeq 30
            aload 5 /* li2 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifne 23
        30: .line 396
      StackMap locals:
      StackMap stack:
            aload 4 /* li1 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifne 31
            aload 5 /* li2 */
            invokeinterface java.util.ListIterator.hasNext:()Z
            ifeq 32
      StackMap locals:
      StackMap stack:
        31: iconst_0
            goto 33
      StackMap locals:
      StackMap stack:
        32: iconst_1
      StackMap locals:
      StackMap stack: int
        33: aload 3
            monitorexit
        34: ireturn
        end local 5 // java.util.ListIterator li2
        end local 4 // java.util.ListIterator li1
        35: .line 387
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object java.util.List java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        36: athrow
        end local 2 // java.util.List lo
        end local 1 // java.lang.Object o
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   37     0  this  Lorg/apache/commons/collections/FastArrayList;
            0   37     1     o  Ljava/lang/Object;
            5   37     2    lo  Ljava/util/List;
            7   19     3   li1  Ljava/util/ListIterator;
            8   19     4   li2  Ljava/util/ListIterator;
           10   14     5    o1  Ljava/lang/Object;
           11   14     6    o2  Ljava/lang/Object;
           21   35     4   li1  Ljava/util/ListIterator;
           22   35     5   li2  Ljava/util/ListIterator;
           24   29     6    o1  Ljava/lang/Object;
           25   29     7    o2  Ljava/lang/Object;
      Exception table:
        from    to  target  type
          20    28      35  any
          29    34      35  any
          35    36      35  any
    MethodParameters:
      Name  Flags
      o     

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int index
         0: .line 412
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 413
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            areturn
         2: .line 415
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         3: .line 416
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            aload 2
            monitorexit
         4: areturn
         5: .line 415
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // int index
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1  index  I
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      index  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 430
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 10
         1: .line 431
            iconst_1
            istore 1 /* hashCode */
        start local 1 // int hashCode
         2: .line 432
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 2 /* i */
        start local 2 // java.util.Iterator i
         3: .line 433
            goto 8
         4: .line 434
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 3 /* o */
        start local 3 // java.lang.Object o
         5: .line 435
            bipush 31
            iload 1 /* hashCode */
            imul
            aload 3 /* o */
            ifnonnull 6
            iconst_0
            goto 7
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.Iterator java.lang.Object
      StackMap stack: int
         6: aload 3 /* o */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.Iterator java.lang.Object
      StackMap stack: int int
         7: iadd
            istore 1 /* hashCode */
        end local 3 // java.lang.Object o
         8: .line 433
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 437
            iload 1 /* hashCode */
            ireturn
        end local 2 // java.util.Iterator i
        end local 1 // int hashCode
        10: .line 439
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 1
            monitorenter
        11: .line 440
            iconst_1
            istore 2 /* hashCode */
        start local 2 // int hashCode
        12: .line 441
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 3 /* i */
        start local 3 // java.util.Iterator i
        13: .line 442
            goto 18
        14: .line 443
      StackMap locals: java.util.ArrayList int java.util.Iterator
      StackMap stack:
            aload 3 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 4 /* o */
        start local 4 // java.lang.Object o
        15: .line 444
            bipush 31
            iload 2 /* hashCode */
            imul
            aload 4 /* o */
            ifnonnull 16
            iconst_0
            goto 17
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList int java.util.Iterator java.lang.Object
      StackMap stack: int
        16: aload 4 /* o */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList int java.util.Iterator java.lang.Object
      StackMap stack: int int
        17: iadd
            istore 2 /* hashCode */
        end local 4 // java.lang.Object o
        18: .line 442
      StackMap locals:
      StackMap stack:
            aload 3 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
        19: .line 446
            iload 2 /* hashCode */
            aload 1
            monitorexit
        20: ireturn
        end local 3 // java.util.Iterator i
        end local 2 // int hashCode
        21: .line 439
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
        22: athrow
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lorg/apache/commons/collections/FastArrayList;
            2   10     1  hashCode  I
            3   10     2         i  Ljava/util/Iterator;
            5    8     3         o  Ljava/lang/Object;
           12   21     2  hashCode  I
           13   21     3         i  Ljava/util/Iterator;
           15   18     4         o  Ljava/lang/Object;
      Exception table:
        from    to  target  type
          11    20      21  any
          21    22      21  any

  public int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object element
         0: .line 462
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 463
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.indexOf:(Ljava/lang/Object;)I
            ireturn
         2: .line 465
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         3: .line 466
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.indexOf:(Ljava/lang/Object;)I
            aload 2
            monitorexit
         4: ireturn
         5: .line 465
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1  element  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
         Name  Flags
      element  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 478
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 479
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            ireturn
         2: .line 481
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 1
            monitorenter
         3: .line 482
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.isEmpty:()Z
            aload 1
            monitorexit
         4: ireturn
         5: .line 481
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/FastArrayList;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 507
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 508
            new org.apache.commons.collections.FastArrayList$ListIter
            dup
            aload 0 /* this */
            iconst_0
            invokespecial org.apache.commons.collections.FastArrayList$ListIter.<init>:(Lorg/apache/commons/collections/FastArrayList;I)V
            areturn
         2: .line 510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/FastArrayList;

  public int lastIndexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object element
         0: .line 524
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 525
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.lastIndexOf:(Ljava/lang/Object;)I
            ireturn
         2: .line 527
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         3: .line 528
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.lastIndexOf:(Ljava/lang/Object;)I
            aload 2
            monitorexit
         4: ireturn
         5: .line 527
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1  element  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
         Name  Flags
      element  

  public java.util.ListIterator listIterator();
    descriptor: ()Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 553
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 554
            new org.apache.commons.collections.FastArrayList$ListIter
            dup
            aload 0 /* this */
            iconst_0
            invokespecial org.apache.commons.collections.FastArrayList$ListIter.<init>:(Lorg/apache/commons/collections/FastArrayList;I)V
            areturn
         2: .line 556
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.listIterator:()Ljava/util/ListIterator;
            areturn
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/FastArrayList;

  public java.util.ListIterator listIterator(int);
    descriptor: (I)Ljava/util/ListIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int index
         0: .line 582
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 583
            new org.apache.commons.collections.FastArrayList$ListIter
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokespecial org.apache.commons.collections.FastArrayList$ListIter.<init>:(Lorg/apache/commons/collections/FastArrayList;I)V
            areturn
         2: .line 585
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.listIterator:(I)Ljava/util/ListIterator;
            areturn
        end local 1 // int index
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/collections/FastArrayList;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int index
         0: .line 600
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 601
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 602
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 603
            aload 3 /* temp */
            iload 1 /* index */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            astore 4 /* result */
        start local 4 // java.lang.Object result
         4: .line 604
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 605
            aload 4 /* result */
            aload 2
            monitorexit
         6: areturn
        end local 4 // java.lang.Object result
        end local 3 // java.util.ArrayList temp
         7: .line 601
      StackMap locals: org.apache.commons.collections.FastArrayList int org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
         9: .line 608
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 609
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            invokevirtual java.util.ArrayList.remove:(I)Ljava/lang/Object;
            aload 2
            monitorexit
        11: areturn
        12: .line 608
      StackMap locals: org.apache.commons.collections.FastArrayList int java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        13: athrow
        end local 1 // int index
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1   index  I
            3    7     3    temp  Ljava/util/ArrayList;
            4    7     4  result  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
       Name  Flags
      index  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object element
         0: .line 624
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 625
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 626
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 627
            aload 3 /* temp */
            aload 1 /* element */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            istore 4 /* result */
        start local 4 // boolean result
         4: .line 628
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 629
            iload 4 /* result */
            aload 2
            monitorexit
         6: ireturn
        end local 4 // boolean result
        end local 3 // java.util.ArrayList temp
         7: .line 625
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
         9: .line 632
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 633
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* element */
            invokevirtual java.util.ArrayList.remove:(Ljava/lang/Object;)Z
            aload 2
            monitorexit
        11: ireturn
        12: .line 632
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        13: athrow
        end local 1 // java.lang.Object element
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1  element  Ljava/lang/Object;
            3    7     3     temp  Ljava/util/ArrayList;
            4    7     4   result  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
         Name  Flags
      element  

  public boolean removeAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.util.Collection collection
         0: .line 651
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 652
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 653
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 654
            aload 3 /* temp */
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.removeAll:(Ljava/util/Collection;)Z
            istore 4 /* result */
        start local 4 // boolean result
         4: .line 655
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 656
            iload 4 /* result */
            aload 2
            monitorexit
         6: ireturn
        end local 4 // boolean result
        end local 3 // java.util.ArrayList temp
         7: .line 652
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
         9: .line 659
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 660
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.removeAll:(Ljava/util/Collection;)Z
            aload 2
            monitorexit
        11: ireturn
        12: .line 659
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        13: athrow
        end local 1 // java.util.Collection collection
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1  collection  Ljava/util/Collection;
            3    7     3        temp  Ljava/util/ArrayList;
            4    7     4      result  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
            Name  Flags
      collection  

  public boolean retainAll(java.util.Collection);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.util.Collection collection
         0: .line 678
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 679
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         2: .line 680
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 3 /* temp */
        start local 3 // java.util.ArrayList temp
         3: .line 681
            aload 3 /* temp */
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.retainAll:(Ljava/util/Collection;)Z
            istore 4 /* result */
        start local 4 // boolean result
         4: .line 682
            aload 0 /* this */
            aload 3 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
         5: .line 683
            iload 4 /* result */
            aload 2
            monitorexit
         6: ireturn
        end local 4 // boolean result
        end local 3 // java.util.ArrayList temp
         7: .line 679
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         8: athrow
         9: .line 686
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
        10: .line 687
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* collection */
            invokevirtual java.util.ArrayList.retainAll:(Ljava/util/Collection;)Z
            aload 2
            monitorexit
        11: ireturn
        12: .line 686
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.Collection java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
        13: athrow
        end local 1 // java.util.Collection collection
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/apache/commons/collections/FastArrayList;
            0   14     1  collection  Ljava/util/Collection;
            3    7     3        temp  Ljava/util/ArrayList;
            4    7     4      result  Z
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    11      12  any
          12    13      12  any
    MethodParameters:
            Name  Flags
      collection  

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int index
        start local 2 // java.lang.Object element
         0: .line 709
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 710
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.util.ArrayList.set:(ILjava/lang/Object;)Ljava/lang/Object;
            areturn
         2: .line 712
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 3
            monitorenter
         3: .line 713
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.util.ArrayList.set:(ILjava/lang/Object;)Ljava/lang/Object;
            aload 3
            monitorexit
         4: areturn
         5: .line 712
      StackMap locals: org.apache.commons.collections.FastArrayList int java.lang.Object java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
         6: athrow
        end local 2 // java.lang.Object element
        end local 1 // int index
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1    index  I
            0    7     2  element  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
         Name  Flags
      index    
      element  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 725
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 726
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
         2: .line 728
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 1
            monitorenter
         3: .line 729
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            aload 1
            monitorexit
         4: ireturn
         5: .line 728
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/FastArrayList;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any

  public java.util.List subList(int, int);
    descriptor: (II)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 749
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 750
            new org.apache.commons.collections.FastArrayList$SubList
            dup
            aload 0 /* this */
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokespecial org.apache.commons.collections.FastArrayList$SubList.<init>:(Lorg/apache/commons/collections/FastArrayList;II)V
            areturn
         2: .line 752
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            iload 1 /* fromIndex */
            iload 2 /* toIndex */
            invokevirtual java.util.ArrayList.subList:(II)Ljava/util/List;
            areturn
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/collections/FastArrayList;
            0    3     1  fromIndex  I
            0    3     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 763
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 764
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.toArray:()[Ljava/lang/Object;
            areturn
         2: .line 766
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 1
            monitorenter
         3: .line 767
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.toArray:()[Ljava/lang/Object;
            aload 1
            monitorexit
         4: areturn
         5: .line 766
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 1
            monitorexit
         6: athrow
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/FastArrayList;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any

  public java.lang.Object[] toArray(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.apache.commons.collections.FastArrayList this
        start local 1 // java.lang.Object[] array
         0: .line 788
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 2
         1: .line 789
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* array */
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
         2: .line 791
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 2
            monitorenter
         3: .line 792
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            aload 1 /* array */
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            aload 2
            monitorexit
         4: areturn
         5: .line 791
      StackMap locals: org.apache.commons.collections.FastArrayList java.lang.Object[] java.util.ArrayList
      StackMap stack: java.lang.Throwable
            aload 2
            monitorexit
         6: athrow
        end local 1 // java.lang.Object[] array
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/collections/FastArrayList;
            0    7     1  array  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           3     4       5  any
           5     6       5  any
    MethodParameters:
       Name  Flags
      array  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 804
            new java.lang.StringBuffer
            dup
            ldc "FastArrayList["
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuffer sb
         1: .line 805
            aload 1 /* sb */
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         2: .line 806
            aload 1 /* sb */
            ldc "]"
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            pop
         3: .line 807
            aload 1 /* sb */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuffer sb
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/FastArrayList;
            1    4     1    sb  Ljava/lang/StringBuffer;

  public void trimToSize();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.apache.commons.collections.FastArrayList this
         0: .line 819
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.fast:Z
            ifeq 9
         1: .line 820
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 821
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.clone:()Ljava/lang/Object;
            checkcast java.util.ArrayList
            astore 2 /* temp */
        start local 2 // java.util.ArrayList temp
         3: .line 822
            aload 2 /* temp */
            invokevirtual java.util.ArrayList.trimToSize:()V
         4: .line 823
            aload 0 /* this */
            aload 2 /* temp */
            putfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
        end local 2 // java.util.ArrayList temp
         5: .line 820
            aload 1
            monitorexit
         6: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList org.apache.commons.collections.FastArrayList
      StackMap stack: java.lang.Throwable
         7: aload 1
            monitorexit
         8: athrow
         9: .line 826
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            dup
            astore 1
            monitorenter
        10: .line 827
            aload 0 /* this */
            getfield org.apache.commons.collections.FastArrayList.list:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.trimToSize:()V
        11: .line 826
            aload 1
            monitorexit
        12: goto 15
      StackMap locals: org.apache.commons.collections.FastArrayList java.util.ArrayList
      StackMap stack: java.lang.Throwable
        13: aload 1
            monitorexit
        14: athrow
        15: .line 831
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.commons.collections.FastArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lorg/apache/commons/collections/FastArrayList;
            3    5     2  temp  Ljava/util/ArrayList;
      Exception table:
        from    to  target  type
           2     6       7  any
           7     8       7  any
          10    12      13  any
          13    14      13  any
}
SourceFile: "FastArrayList.java"
NestMembers:
  org.apache.commons.collections.FastArrayList$ListIter  org.apache.commons.collections.FastArrayList$SubList  org.apache.commons.collections.FastArrayList$SubList$SubListIter
InnerClasses:
  private ListIter = org.apache.commons.collections.FastArrayList$ListIter of org.apache.commons.collections.FastArrayList
  private SubList = org.apache.commons.collections.FastArrayList$SubList of org.apache.commons.collections.FastArrayList