public class org.apache.commons.collections.ReferenceMap extends java.util.AbstractMap
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.collections.ReferenceMap
  super_class: java.util.AbstractMap
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -3370601314380922368

  public static final int HARD;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int SOFT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int WEAK;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

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

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

  private float loadFactor;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

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

  private transient java.lang.ref.ReferenceQueue queue;
    descriptor: Ljava/lang/ref/ReferenceQueue;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient org.apache.commons.collections.ReferenceMap$Entry[] table;
    descriptor: [Lorg/apache/commons/collections/ReferenceMap$Entry;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int size;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int threshold;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private volatile transient int modCount;
    descriptor: I
    flags: (0x00c2) ACC_PRIVATE, ACC_VOLATILE, ACC_TRANSIENT

  private transient java.util.Set keySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Set entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Collection values;
    descriptor: Ljava/util/Collection;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 204
            aload 0 /* this */
            iconst_0
            iconst_1
            invokespecial org.apache.commons.collections.ReferenceMap.<init>:(II)V
         1: .line 205
            return
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/ReferenceMap;

  public void <init>(int, int, boolean);
    descriptor: (IIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // int keyType
        start local 2 // int valueType
        start local 3 // boolean purgeValues
         0: .line 219
            aload 0 /* this */
            iload 1 /* keyType */
            iload 2 /* valueType */
            invokespecial org.apache.commons.collections.ReferenceMap.<init>:(II)V
         1: .line 220
            aload 0 /* this */
            iload 3 /* purgeValues */
            putfield org.apache.commons.collections.ReferenceMap.purgeValues:Z
         2: .line 221
            return
        end local 3 // boolean purgeValues
        end local 2 // int valueType
        end local 1 // int keyType
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/apache/commons/collections/ReferenceMap;
            0    3     1      keyType  I
            0    3     2    valueType  I
            0    3     3  purgeValues  Z
    MethodParameters:
             Name  Flags
      keyType      
      valueType    
      purgeValues  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // int keyType
        start local 2 // int valueType
         0: .line 233
            aload 0 /* this */
            iload 1 /* keyType */
            iload 2 /* valueType */
            bipush 16
            ldc 0.75
            invokespecial org.apache.commons.collections.ReferenceMap.<init>:(IIIF)V
         1: .line 234
            return
        end local 2 // int valueType
        end local 1 // int keyType
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/commons/collections/ReferenceMap;
            0    2     1    keyType  I
            0    2     2  valueType  I
    MethodParameters:
           Name  Flags
      keyType    
      valueType  

  public void <init>(int, int, int, float, boolean);
    descriptor: (IIIFZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // int keyType
        start local 2 // int valueType
        start local 3 // int capacity
        start local 4 // float loadFactor
        start local 5 // boolean purgeValues
         0: .line 256
            aload 0 /* this */
            iload 1 /* keyType */
            iload 2 /* valueType */
            iload 3 /* capacity */
            fload 4 /* loadFactor */
            invokespecial org.apache.commons.collections.ReferenceMap.<init>:(IIIF)V
         1: .line 257
            aload 0 /* this */
            iload 5 /* purgeValues */
            putfield org.apache.commons.collections.ReferenceMap.purgeValues:Z
         2: .line 258
            return
        end local 5 // boolean purgeValues
        end local 4 // float loadFactor
        end local 3 // int capacity
        end local 2 // int valueType
        end local 1 // int keyType
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lorg/apache/commons/collections/ReferenceMap;
            0    3     1      keyType  I
            0    3     2    valueType  I
            0    3     3     capacity  I
            0    3     4   loadFactor  F
            0    3     5  purgeValues  Z
    MethodParameters:
             Name  Flags
      keyType      
      valueType    
      capacity     
      loadFactor   
      purgeValues  

  public void <init>(int, int, int, float);
    descriptor: (IIIF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // int keyType
        start local 2 // int valueType
        start local 3 // int capacity
        start local 4 // float loadFactor
         0: .line 273
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 144
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.ReferenceMap.purgeValues:Z
         2: .line 153
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
         3: .line 275
            ldc "keyType"
            iload 1 /* keyType */
            invokestatic org.apache.commons.collections.ReferenceMap.verify:(Ljava/lang/String;I)V
         4: .line 276
            ldc "valueType"
            iload 2 /* valueType */
            invokestatic org.apache.commons.collections.ReferenceMap.verify:(Ljava/lang/String;I)V
         5: .line 278
            iload 3 /* capacity */
            ifgt 7
         6: .line 279
            new java.lang.IllegalArgumentException
            dup
            ldc "capacity must be positive"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 281
      StackMap locals: org.apache.commons.collections.ReferenceMap int int int float
      StackMap stack:
            fload 4 /* loadFactor */
            fconst_0
            fcmpg
            ifle 8
            fload 4 /* loadFactor */
            fconst_1
            fcmpl
            iflt 9
         8: .line 282
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            ldc "Load factor must be greater than 0 and less than 1."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 285
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* keyType */
            putfield org.apache.commons.collections.ReferenceMap.keyType:I
        10: .line 286
            aload 0 /* this */
            iload 2 /* valueType */
            putfield org.apache.commons.collections.ReferenceMap.valueType:I
        11: .line 288
            iconst_1
            istore 5 /* v */
        start local 5 // int v
        12: .line 289
            goto 14
      StackMap locals: int
      StackMap stack:
        13: iload 5 /* v */
            iconst_2
            imul
            istore 5 /* v */
      StackMap locals:
      StackMap stack:
        14: iload 5 /* v */
            iload 3 /* capacity */
            if_icmplt 13
        15: .line 291
            aload 0 /* this */
            iload 5 /* v */
            anewarray org.apache.commons.collections.ReferenceMap$Entry
            putfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
        16: .line 292
            aload 0 /* this */
            fload 4 /* loadFactor */
            putfield org.apache.commons.collections.ReferenceMap.loadFactor:F
        17: .line 293
            aload 0 /* this */
            iload 5 /* v */
            i2f
            fload 4 /* loadFactor */
            fmul
            f2i
            putfield org.apache.commons.collections.ReferenceMap.threshold:I
        18: .line 294
            return
        end local 5 // int v
        end local 4 // float loadFactor
        end local 3 // int capacity
        end local 2 // int valueType
        end local 1 // int keyType
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lorg/apache/commons/collections/ReferenceMap;
            0   19     1     keyType  I
            0   19     2   valueType  I
            0   19     3    capacity  I
            0   19     4  loadFactor  F
           12   19     5           v  I
    MethodParameters:
            Name  Flags
      keyType     
      valueType   
      capacity    
      loadFactor  

  private static void verify(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // java.lang.String name
        start local 1 // int type
         0: .line 299
            iload 1 /* type */
            iflt 1
            iload 1 /* type */
            iconst_2
            if_icmple 4
         1: .line 300
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            aload 0 /* name */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         2: .line 301
            ldc " must be HARD, SOFT, WEAK."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         3: .line 300
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 303
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int type
        end local 0 // java.lang.String name
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  name  Ljava/lang/String;
            0    5     1  type  I
    MethodParameters:
      Name  Flags
      name  
      type  

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // java.io.ObjectOutputStream out
         0: .line 313
            aload 1 /* out */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 314
            aload 1 /* out */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            arraylength
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         2: .line 319
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* iter */
        start local 2 // java.util.Iterator iter
         3: goto 7
         4: .line 320
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         5: .line 321
            aload 1 /* out */
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         6: .line 322
            aload 1 /* out */
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
        end local 3 // java.util.Map$Entry entry
         7: .line 319
      StackMap locals:
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        end local 2 // java.util.Iterator iter
         8: .line 324
            aload 1 /* out */
            aconst_null
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         9: .line 325
            return
        end local 1 // java.io.ObjectOutputStream out
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/commons/collections/ReferenceMap;
            0   10     1    out  Ljava/io/ObjectOutputStream;
            3    8     2   iter  Ljava/util/Iterator;
            5    7     3  entry  Ljava/util/Map$Entry;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // java.io.ObjectInputStream inp
         0: .line 336
            aload 1 /* inp */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 337
            aload 0 /* this */
            aload 1 /* inp */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            anewarray org.apache.commons.collections.ReferenceMap$Entry
            putfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
         2: .line 338
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            arraylength
            i2f
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.loadFactor:F
            fmul
            f2i
            putfield org.apache.commons.collections.ReferenceMap.threshold:I
         3: .line 339
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
         4: .line 340
            aload 1 /* inp */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 2 /* key */
        start local 2 // java.lang.Object key
         5: .line 341
            goto 9
         6: .line 342
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* inp */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 3 /* value */
        start local 3 // java.lang.Object value
         7: .line 343
            aload 0 /* this */
            aload 2 /* key */
            aload 3 /* value */
            invokevirtual org.apache.commons.collections.ReferenceMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 344
            aload 1 /* inp */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 2 /* key */
        end local 3 // java.lang.Object value
         9: .line 341
      StackMap locals:
      StackMap stack:
            aload 2 /* key */
            ifnonnull 6
        10: .line 346
            return
        end local 2 // java.lang.Object key
        end local 1 // java.io.ObjectInputStream inp
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/apache/commons/collections/ReferenceMap;
            0   11     1    inp  Ljava/io/ObjectInputStream;
            5   11     2    key  Ljava/lang/Object;
            7    9     3  value  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      inp   

  private java.lang.Object toReference(int, java.lang.Object, int);
    descriptor: (ILjava/lang/Object;I)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // int type
        start local 2 // java.lang.Object referent
        start local 3 // int hash
         0: .line 361
            iload 1 /* type */
            tableswitch { // 0 - 2
                    0: 1
                    1: 2
                    2: 3
              default: 4
          }
         1: .line 362
      StackMap locals:
      StackMap stack:
            aload 2 /* referent */
            areturn
         2: .line 363
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections.ReferenceMap$SoftRef
            dup
            iload 3 /* hash */
            aload 2 /* referent */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokespecial org.apache.commons.collections.ReferenceMap$SoftRef.<init>:(ILjava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V
            areturn
         3: .line 364
      StackMap locals:
      StackMap stack:
            new org.apache.commons.collections.ReferenceMap$WeakRef
            dup
            iload 3 /* hash */
            aload 2 /* referent */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokespecial org.apache.commons.collections.ReferenceMap$WeakRef.<init>:(ILjava/lang/Object;Ljava/lang/ref/ReferenceQueue;)V
            areturn
         4: .line 365
      StackMap locals:
      StackMap stack:
            new java.lang.Error
            dup
            invokespecial java.lang.Error.<init>:()V
            athrow
        end local 3 // int hash
        end local 2 // java.lang.Object referent
        end local 1 // int type
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/apache/commons/collections/ReferenceMap;
            0    5     1      type  I
            0    5     2  referent  Ljava/lang/Object;
            0    5     3      hash  I
    MethodParameters:
          Name  Flags
      type      
      referent  
      hash      

  private org.apache.commons.collections.ReferenceMap$Entry getEntry(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Lorg/apache/commons/collections/ReferenceMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // java.lang.Object key
         0: .line 378
            aload 1 /* key */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 379
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         2: .line 380
            aload 0 /* this */
            iload 2 /* hash */
            invokevirtual org.apache.commons.collections.ReferenceMap.indexFor:(I)I
            istore 3 /* index */
        start local 3 // int index
         3: .line 381
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 3 /* index */
            aaload
            astore 4 /* entry */
        start local 4 // org.apache.commons.collections.ReferenceMap$Entry entry
         4: goto 8
         5: .line 382
      StackMap locals: int int org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            aload 4 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.hash:I
            iload 2 /* hash */
            if_icmpne 7
            aload 1 /* key */
            aload 4 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getKey:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
         6: .line 383
            aload 4 /* entry */
            areturn
         7: .line 381
      StackMap locals:
      StackMap stack:
            aload 4 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 4 /* entry */
      StackMap locals:
      StackMap stack:
         8: aload 4 /* entry */
            ifnonnull 5
        end local 4 // org.apache.commons.collections.ReferenceMap$Entry entry
         9: .line 386
            aconst_null
            areturn
        end local 3 // int index
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/commons/collections/ReferenceMap;
            0   10     1    key  Ljava/lang/Object;
            2   10     2   hash  I
            3   10     3  index  I
            4    9     4  entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  private int indexFor(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // int hash
         0: .line 396
            iload 1 /* hash */
            iload 1 /* hash */
            bipush 15
            ishl
            iconst_m1
            ixor
            iadd
            istore 1 /* hash */
         1: .line 397
            iload 1 /* hash */
            iload 1 /* hash */
            bipush 10
            iushr
            ixor
            istore 1 /* hash */
         2: .line 398
            iload 1 /* hash */
            iload 1 /* hash */
            iconst_3
            ishl
            iadd
            istore 1 /* hash */
         3: .line 399
            iload 1 /* hash */
            iload 1 /* hash */
            bipush 6
            iushr
            ixor
            istore 1 /* hash */
         4: .line 400
            iload 1 /* hash */
            iload 1 /* hash */
            bipush 11
            ishl
            iconst_m1
            ixor
            iadd
            istore 1 /* hash */
         5: .line 401
            iload 1 /* hash */
            iload 1 /* hash */
            bipush 16
            iushr
            ixor
            istore 1 /* hash */
         6: .line 402
            iload 1 /* hash */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            arraylength
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int hash
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/collections/ReferenceMap;
            0    7     1  hash  I
    MethodParameters:
      Name  Flags
      hash  

  private void resize();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 414
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 1 /* old */
        start local 1 // org.apache.commons.collections.ReferenceMap$Entry[] old
         1: .line 415
            aload 0 /* this */
            aload 1 /* old */
            arraylength
            iconst_2
            imul
            anewarray org.apache.commons.collections.ReferenceMap$Entry
            putfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
         2: .line 417
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 14
         4: .line 418
      StackMap locals: org.apache.commons.collections.ReferenceMap$Entry[] int
      StackMap stack:
            aload 1 /* old */
            iload 2 /* i */
            aaload
            astore 3 /* next */
        start local 3 // org.apache.commons.collections.ReferenceMap$Entry next
         5: .line 419
            goto 11
         6: .line 420
      StackMap locals: org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            aload 3 /* next */
            astore 4 /* entry */
        start local 4 // org.apache.commons.collections.ReferenceMap$Entry entry
         7: .line 421
            aload 3 /* next */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 3 /* next */
         8: .line 422
            aload 0 /* this */
            aload 4 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.hash:I
            invokevirtual org.apache.commons.collections.ReferenceMap.indexFor:(I)I
            istore 5 /* index */
        start local 5 // int index
         9: .line 423
            aload 4 /* entry */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 5 /* index */
            aaload
            putfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
        10: .line 424
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 5 /* index */
            aload 4 /* entry */
            aastore
        end local 5 // int index
        end local 4 // org.apache.commons.collections.ReferenceMap$Entry entry
        11: .line 419
      StackMap locals:
      StackMap stack:
            aload 3 /* next */
            ifnonnull 6
        12: .line 426
            aload 1 /* old */
            iload 2 /* i */
            aconst_null
            aastore
        end local 3 // org.apache.commons.collections.ReferenceMap$Entry next
        13: .line 417
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 2 /* i */
            aload 1 /* old */
            arraylength
            if_icmplt 4
        end local 2 // int i
        15: .line 428
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            arraylength
            i2f
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.loadFactor:F
            fmul
            f2i
            putfield org.apache.commons.collections.ReferenceMap.threshold:I
        16: .line 429
            return
        end local 1 // org.apache.commons.collections.ReferenceMap$Entry[] old
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lorg/apache/commons/collections/ReferenceMap;
            1   17     1    old  [Lorg/apache/commons/collections/ReferenceMap$Entry;
            3   15     2      i  I
            5   13     3   next  Lorg/apache/commons/collections/ReferenceMap$Entry;
            7   11     4  entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
            9   11     5  index  I

  private void purge();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 446
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            astore 1 /* ref */
        start local 1 // java.lang.ref.Reference ref
         1: .line 447
            goto 4
         2: .line 448
      StackMap locals: java.lang.ref.Reference
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ref */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:(Ljava/lang/ref/Reference;)V
         3: .line 449
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            astore 1 /* ref */
         4: .line 447
      StackMap locals:
      StackMap stack:
            aload 1 /* ref */
            ifnonnull 2
         5: .line 451
            return
        end local 1 // java.lang.ref.Reference ref
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/commons/collections/ReferenceMap;
            1    6     1   ref  Ljava/lang/ref/Reference;

  private void purge(java.lang.ref.Reference);
    descriptor: (Ljava/lang/ref/Reference;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // java.lang.ref.Reference ref
         0: .line 458
            aload 1 /* ref */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 459
            aload 0 /* this */
            iload 2 /* hash */
            invokevirtual org.apache.commons.collections.ReferenceMap.indexFor:(I)I
            istore 3 /* index */
        start local 3 // int index
         2: .line 460
            aconst_null
            astore 4 /* previous */
        start local 4 // org.apache.commons.collections.ReferenceMap$Entry previous
         3: .line 461
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 3 /* index */
            aaload
            astore 5 /* entry */
        start local 5 // org.apache.commons.collections.ReferenceMap$Entry entry
         4: .line 462
            goto 12
         5: .line 463
      StackMap locals: org.apache.commons.collections.ReferenceMap java.lang.ref.Reference int int org.apache.commons.collections.ReferenceMap$Entry org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            aload 5 /* entry */
            aload 1 /* ref */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.purge:(Ljava/lang/ref/Reference;)Z
            ifeq 10
         6: .line 464
            aload 4 /* previous */
            ifnonnull 7
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 3 /* index */
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            aastore
            goto 8
         7: .line 465
      StackMap locals:
      StackMap stack:
            aload 4 /* previous */
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            putfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
         8: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.ReferenceMap.size:I
            iconst_1
            isub
            putfield org.apache.commons.collections.ReferenceMap.size:I
         9: .line 467
            return
        10: .line 469
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            astore 4 /* previous */
        11: .line 470
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 5 /* entry */
        12: .line 462
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            ifnonnull 5
        13: .line 473
            return
        end local 5 // org.apache.commons.collections.ReferenceMap$Entry entry
        end local 4 // org.apache.commons.collections.ReferenceMap$Entry previous
        end local 3 // int index
        end local 2 // int hash
        end local 1 // java.lang.ref.Reference ref
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   14     0      this  Lorg/apache/commons/collections/ReferenceMap;
            0   14     1       ref  Ljava/lang/ref/Reference;
            1   14     2      hash  I
            2   14     3     index  I
            3   14     4  previous  Lorg/apache/commons/collections/ReferenceMap$Entry;
            4   14     5     entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
    MethodParameters:
      Name  Flags
      ref   

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 482
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:()V
         1: .line 483
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.size:I
            ireturn
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections/ReferenceMap;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 493
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:()V
         1: .line 494
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.size:I
            ifne 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/ReferenceMap;

  public boolean containsKey(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.ReferenceMap this
        start local 1 // java.lang.Object key
         0: .line 504
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:()V
         1: .line 505
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.ReferenceMap.getEntry:(Ljava/lang/Object;)Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 2 /* entry */
        start local 2 // org.apache.commons.collections.ReferenceMap$Entry entry
         2: .line 506
            aload 2 /* entry */
            ifnonnull 3
            iconst_0
            ireturn
         3: .line 507
      StackMap locals: org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            aload 2 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getValue:()Ljava/lang/Object;
            ifnull 4
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // org.apache.commons.collections.ReferenceMap$Entry entry
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/apache/commons/collections/ReferenceMap;
            0    5     1    key  Ljava/lang/Object;
            2    5     2  entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object get(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.ReferenceMap this
        start local 1 // java.lang.Object key
         0: .line 518
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:()V
         1: .line 519
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual org.apache.commons.collections.ReferenceMap.getEntry:(Ljava/lang/Object;)Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 2 /* entry */
        start local 2 // org.apache.commons.collections.ReferenceMap$Entry entry
         2: .line 520
            aload 2 /* entry */
            ifnonnull 3
            aconst_null
            areturn
         3: .line 521
      StackMap locals: org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            aload 2 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getValue:()Ljava/lang/Object;
            areturn
        end local 2 // org.apache.commons.collections.ReferenceMap$Entry entry
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/collections/ReferenceMap;
            0    4     1    key  Ljava/lang/Object;
            2    4     2  entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object put(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=7, args_size=3
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 537
            aload 1 /* key */
            ifnonnull 1
            new java.lang.NullPointerException
            dup
            ldc "null keys not allowed"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         1: .line 538
      StackMap locals:
      StackMap stack:
            aload 2 /* value */
            ifnonnull 2
            new java.lang.NullPointerException
            dup
            ldc "null values not allowed"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 540
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:()V
         3: .line 541
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.size:I
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.threshold:I
            if_icmple 4
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.resize:()V
         4: .line 543
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 3 /* hash */
        start local 3 // int hash
         5: .line 544
            aload 0 /* this */
            iload 3 /* hash */
            invokevirtual org.apache.commons.collections.ReferenceMap.indexFor:(I)I
            istore 4 /* index */
        start local 4 // int index
         6: .line 545
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 4 /* index */
            aaload
            astore 5 /* entry */
        start local 5 // org.apache.commons.collections.ReferenceMap$Entry entry
         7: .line 546
            goto 13
         8: .line 547
      StackMap locals: int int org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            iload 3 /* hash */
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.hash:I
            if_icmpne 12
            aload 1 /* key */
            aload 5 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getKey:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 12
         9: .line 548
            aload 5 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getValue:()Ljava/lang/Object;
            astore 6 /* result */
        start local 6 // java.lang.Object result
        10: .line 549
            aload 5 /* entry */
            aload 2 /* value */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.setValue:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        11: .line 550
            aload 6 /* result */
            areturn
        end local 6 // java.lang.Object result
        12: .line 552
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 5 /* entry */
        13: .line 546
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            ifnonnull 8
        14: .line 554
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.ReferenceMap.size:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.ReferenceMap.size:I
        15: .line 555
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.ReferenceMap.modCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.ReferenceMap.modCount:I
        16: .line 556
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.keyType:I
            aload 1 /* key */
            iload 3 /* hash */
            invokevirtual org.apache.commons.collections.ReferenceMap.toReference:(ILjava/lang/Object;I)Ljava/lang/Object;
            astore 1 /* key */
        17: .line 557
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.valueType:I
            aload 2 /* value */
            iload 3 /* hash */
            invokevirtual org.apache.commons.collections.ReferenceMap.toReference:(ILjava/lang/Object;I)Ljava/lang/Object;
            astore 2 /* value */
        18: .line 558
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 4 /* index */
            new org.apache.commons.collections.ReferenceMap$Entry
            dup
            aload 0 /* this */
            aload 1 /* key */
            iload 3 /* hash */
            aload 2 /* value */
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 4 /* index */
            aaload
            invokespecial org.apache.commons.collections.ReferenceMap$Entry.<init>:(Lorg/apache/commons/collections/ReferenceMap;Ljava/lang/Object;ILjava/lang/Object;Lorg/apache/commons/collections/ReferenceMap$Entry;)V
            aastore
        19: .line 559
            aconst_null
            areturn
        end local 5 // org.apache.commons.collections.ReferenceMap$Entry entry
        end local 4 // int index
        end local 3 // int hash
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   20     0    this  Lorg/apache/commons/collections/ReferenceMap;
            0   20     1     key  Ljava/lang/Object;
            0   20     2   value  Ljava/lang/Object;
            5   20     3    hash  I
            6   20     4   index  I
            7   20     5   entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
           10   12     6  result  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      key    
      value  

  public java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.collections.ReferenceMap this
        start local 1 // java.lang.Object key
         0: .line 571
            aload 1 /* key */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 572
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.apache.commons.collections.ReferenceMap.purge:()V
         2: .line 573
            aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         3: .line 574
            aload 0 /* this */
            iload 2 /* hash */
            invokevirtual org.apache.commons.collections.ReferenceMap.indexFor:(I)I
            istore 3 /* index */
        start local 3 // int index
         4: .line 575
            aconst_null
            astore 4 /* previous */
        start local 4 // org.apache.commons.collections.ReferenceMap$Entry previous
         5: .line 576
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 3 /* index */
            aaload
            astore 5 /* entry */
        start local 5 // org.apache.commons.collections.ReferenceMap$Entry entry
         6: .line 577
            goto 15
         7: .line 578
      StackMap locals: org.apache.commons.collections.ReferenceMap java.lang.Object int int org.apache.commons.collections.ReferenceMap$Entry org.apache.commons.collections.ReferenceMap$Entry
      StackMap stack:
            iload 2 /* hash */
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.hash:I
            if_icmpne 13
            aload 1 /* key */
            aload 5 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getKey:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 13
         8: .line 579
            aload 4 /* previous */
            ifnonnull 9
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            iload 3 /* index */
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            aastore
            goto 10
         9: .line 580
      StackMap locals:
      StackMap stack:
            aload 4 /* previous */
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            putfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
        10: .line 581
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.ReferenceMap.size:I
            iconst_1
            isub
            putfield org.apache.commons.collections.ReferenceMap.size:I
        11: .line 582
            aload 0 /* this */
            dup
            getfield org.apache.commons.collections.ReferenceMap.modCount:I
            iconst_1
            iadd
            putfield org.apache.commons.collections.ReferenceMap.modCount:I
        12: .line 583
            aload 5 /* entry */
            invokevirtual org.apache.commons.collections.ReferenceMap$Entry.getValue:()Ljava/lang/Object;
            areturn
        13: .line 585
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            astore 4 /* previous */
        14: .line 586
            aload 5 /* entry */
            getfield org.apache.commons.collections.ReferenceMap$Entry.next:Lorg/apache/commons/collections/ReferenceMap$Entry;
            astore 5 /* entry */
        15: .line 577
      StackMap locals:
      StackMap stack:
            aload 5 /* entry */
            ifnonnull 7
        16: .line 588
            aconst_null
            areturn
        end local 5 // org.apache.commons.collections.ReferenceMap$Entry entry
        end local 4 // org.apache.commons.collections.ReferenceMap$Entry previous
        end local 3 // int index
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lorg/apache/commons/collections/ReferenceMap;
            0   17     1       key  Ljava/lang/Object;
            3   17     2      hash  I
            4   17     3     index  I
            5   17     4  previous  Lorg/apache/commons/collections/ReferenceMap$Entry;
            6   17     5     entry  Lorg/apache/commons/collections/ReferenceMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 596
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.table:[Lorg/apache/commons/collections/ReferenceMap$Entry;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 597
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.collections.ReferenceMap.size:I
         2: .line 598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            ifnonnull 2
         3: .line 599
            return
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ReferenceMap;

  public java.util.Set entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 608
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.entrySet:Ljava/util/Set;
            ifnull 2
         1: .line 609
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.entrySet:Ljava/util/Set;
            areturn
         2: .line 611
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.apache.commons.collections.ReferenceMap$1
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.ReferenceMap$1.<init>:(Lorg/apache/commons/collections/ReferenceMap;)V
            putfield org.apache.commons.collections.ReferenceMap.entrySet:Ljava/util/Set;
         3: .line 655
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.entrySet:Ljava/util/Set;
            areturn
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/collections/ReferenceMap;

  public java.util.Set keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 665
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.keySet:Ljava/util/Set;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.keySet:Ljava/util/Set;
            areturn
         1: .line 666
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.apache.commons.collections.ReferenceMap$2
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.ReferenceMap$2.<init>:(Lorg/apache/commons/collections/ReferenceMap;)V
            putfield org.apache.commons.collections.ReferenceMap.keySet:Ljava/util/Set;
         2: .line 701
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.keySet:Ljava/util/Set;
            areturn
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/ReferenceMap;

  public java.util.Collection values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.collections.ReferenceMap this
         0: .line 711
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.values:Ljava/util/Collection;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.values:Ljava/util/Collection;
            areturn
         1: .line 712
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.apache.commons.collections.ReferenceMap$3
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections.ReferenceMap$3.<init>:(Lorg/apache/commons/collections/ReferenceMap;)V
            putfield org.apache.commons.collections.ReferenceMap.values:Ljava/util/Collection;
         2: .line 737
            aload 0 /* this */
            getfield org.apache.commons.collections.ReferenceMap.values:Ljava/util/Collection;
            areturn
        end local 0 // org.apache.commons.collections.ReferenceMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections/ReferenceMap;
}
SourceFile: "ReferenceMap.java"
NestMembers:
  org.apache.commons.collections.ReferenceMap$1  org.apache.commons.collections.ReferenceMap$2  org.apache.commons.collections.ReferenceMap$3  org.apache.commons.collections.ReferenceMap$Entry  org.apache.commons.collections.ReferenceMap$EntryIterator  org.apache.commons.collections.ReferenceMap$KeyIterator  org.apache.commons.collections.ReferenceMap$SoftRef  org.apache.commons.collections.ReferenceMap$ValueIterator  org.apache.commons.collections.ReferenceMap$WeakRef
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  org.apache.commons.collections.ReferenceMap$1
  org.apache.commons.collections.ReferenceMap$2
  org.apache.commons.collections.ReferenceMap$3
  private Entry = org.apache.commons.collections.ReferenceMap$Entry of org.apache.commons.collections.ReferenceMap
  private EntryIterator = org.apache.commons.collections.ReferenceMap$EntryIterator of org.apache.commons.collections.ReferenceMap
  private KeyIterator = org.apache.commons.collections.ReferenceMap$KeyIterator of org.apache.commons.collections.ReferenceMap
  private SoftRef = org.apache.commons.collections.ReferenceMap$SoftRef of org.apache.commons.collections.ReferenceMap
  private ValueIterator = org.apache.commons.collections.ReferenceMap$ValueIterator of org.apache.commons.collections.ReferenceMap
  private WeakRef = org.apache.commons.collections.ReferenceMap$WeakRef of org.apache.commons.collections.ReferenceMap