class org.apache.commons.lang.IntHashMap
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.lang.IntHashMap
  super_class: java.lang.Object
{
  private transient org.apache.commons.lang.IntHashMap$Entry[] table;
    descriptor: [Lorg/apache/commons/lang/IntHashMap$Entry;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

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

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

  private final float loadFactor;
    descriptor: F
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.lang.IntHashMap this
         0: .line 96
            aload 0 /* this */
            bipush 20
            ldc 0.75
            invokespecial org.apache.commons.lang.IntHashMap.<init>:(IF)V
         1: .line 97
            return
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/lang/IntHashMap;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // int initialCapacity
         0: .line 108
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokespecial org.apache.commons.lang.IntHashMap.<init>:(IF)V
         1: .line 109
            return
        end local 1 // int initialCapacity
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/apache/commons/lang/IntHashMap;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 121
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 122
            iload 1 /* initialCapacity */
            ifge 3
         2: .line 123
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Capacity: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* initialCapacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 125
      StackMap locals: org.apache.commons.lang.IntHashMap int float
      StackMap stack:
            fload 2 /* loadFactor */
            fconst_0
            fcmpg
            ifgt 5
         4: .line 126
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Load: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            fload 2 /* loadFactor */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 128
      StackMap locals:
      StackMap stack:
            iload 1 /* initialCapacity */
            ifne 7
         6: .line 129
            iconst_1
            istore 1 /* initialCapacity */
         7: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield org.apache.commons.lang.IntHashMap.loadFactor:F
         8: .line 133
            aload 0 /* this */
            iload 1 /* initialCapacity */
            anewarray org.apache.commons.lang.IntHashMap$Entry
            putfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
         9: .line 134
            aload 0 /* this */
            iload 1 /* initialCapacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield org.apache.commons.lang.IntHashMap.threshold:I
        10: .line 135
            return
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   11     0             this  Lorg/apache/commons/lang/IntHashMap;
            0   11     1  initialCapacity  I
            0   11     2       loadFactor  F
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.lang.IntHashMap this
         0: .line 143
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.count:I
            ireturn
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/lang/IntHashMap;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.lang.IntHashMap this
         0: .line 153
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.count:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/lang/IntHashMap;

  public boolean contains(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.lang.IntHashMap this
        start local 1 // java.lang.Object value
         0: .line 175
            aload 1 /* value */
            ifnonnull 2
         1: .line 176
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
         2: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
         3: .line 180
            aload 2 /* tab */
            arraylength
            istore 3 /* i */
        start local 3 // int i
         4: goto 11
         5: .line 181
      StackMap locals: org.apache.commons.lang.IntHashMap$Entry[] int
      StackMap stack:
            aload 2 /* tab */
            iload 3 /* i */
            aaload
            astore 4 /* e */
        start local 4 // org.apache.commons.lang.IntHashMap$Entry e
         6: goto 10
         7: .line 182
      StackMap locals: org.apache.commons.lang.IntHashMap$Entry
      StackMap stack:
            aload 4 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.value:Ljava/lang/Object;
            aload 1 /* value */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 183
            iconst_1
            ireturn
         9: .line 181
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 4 /* e */
            ifnonnull 7
        end local 4 // org.apache.commons.lang.IntHashMap$Entry e
        11: .line 180
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iinc 3 /* i */ -1
            ifgt 5
        end local 3 // int i
        12: .line 187
            iconst_0
            ireturn
        end local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Lorg/apache/commons/lang/IntHashMap;
            0   13     1  value  Ljava/lang/Object;
            3   13     2    tab  [Lorg/apache/commons/lang/IntHashMap$Entry;
            4   12     3      i  I
            6   11     4      e  Lorg/apache/commons/lang/IntHashMap$Entry;
    MethodParameters:
       Name  Flags
      value  

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // java.lang.Object value
         0: .line 203
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual org.apache.commons.lang.IntHashMap.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/lang/IntHashMap;
            0    1     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public boolean containsKey(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // int key
         0: .line 216
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
         1: .line 217
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 218
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 219
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.apache.commons.lang.IntHashMap$Entry e
         4: goto 8
         5: .line 220
      StackMap locals: org.apache.commons.lang.IntHashMap int org.apache.commons.lang.IntHashMap$Entry[] int int org.apache.commons.lang.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 7
         6: .line 221
            iconst_1
            ireturn
         7: .line 219
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* e */
            ifnonnull 5
        end local 5 // org.apache.commons.lang.IntHashMap$Entry e
         9: .line 224
            iconst_0
            ireturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/commons/lang/IntHashMap;
            0   10     1    key  I
            1   10     2    tab  [Lorg/apache/commons/lang/IntHashMap$Entry;
            2   10     3   hash  I
            3   10     4  index  I
            4    9     5      e  Lorg/apache/commons/lang/IntHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // int key
         0: .line 237
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
         1: .line 238
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 239
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 240
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.apache.commons.lang.IntHashMap$Entry e
         4: goto 8
         5: .line 241
      StackMap locals: org.apache.commons.lang.IntHashMap int org.apache.commons.lang.IntHashMap$Entry[] int int org.apache.commons.lang.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 7
         6: .line 242
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.value:Ljava/lang/Object;
            areturn
         7: .line 240
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 5 /* e */
            ifnonnull 5
        end local 5 // org.apache.commons.lang.IntHashMap$Entry e
         9: .line 245
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/commons/lang/IntHashMap;
            0   10     1    key  I
            1   10     2    tab  [Lorg/apache/commons/lang/IntHashMap$Entry;
            2   10     3   hash  I
            3   10     4  index  I
            4    9     5      e  Lorg/apache/commons/lang/IntHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  protected void rehash();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=9, args_size=1
        start local 0 // org.apache.commons.lang.IntHashMap this
         0: .line 258
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            arraylength
            istore 1 /* oldCapacity */
        start local 1 // int oldCapacity
         1: .line 259
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 2 /* oldMap */
        start local 2 // org.apache.commons.lang.IntHashMap$Entry[] oldMap
         2: .line 261
            iload 1 /* oldCapacity */
            iconst_2
            imul
            iconst_1
            iadd
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 262
            iload 3 /* newCapacity */
            anewarray org.apache.commons.lang.IntHashMap$Entry
            astore 4 /* newMap */
        start local 4 // org.apache.commons.lang.IntHashMap$Entry[] newMap
         4: .line 264
            aload 0 /* this */
            iload 3 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.loadFactor:F
            fmul
            f2i
            putfield org.apache.commons.lang.IntHashMap.threshold:I
         5: .line 265
            aload 0 /* this */
            aload 4 /* newMap */
            putfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
         6: .line 267
            iload 1 /* oldCapacity */
            istore 5 /* i */
        start local 5 // int i
         7: goto 16
         8: .line 268
      StackMap locals: org.apache.commons.lang.IntHashMap int org.apache.commons.lang.IntHashMap$Entry[] int org.apache.commons.lang.IntHashMap$Entry[] int
      StackMap stack:
            aload 2 /* oldMap */
            iload 5 /* i */
            aaload
            astore 6 /* old */
        start local 6 // org.apache.commons.lang.IntHashMap$Entry old
         9: goto 15
        10: .line 269
      StackMap locals: org.apache.commons.lang.IntHashMap$Entry
      StackMap stack:
            aload 6 /* old */
            astore 7 /* e */
        start local 7 // org.apache.commons.lang.IntHashMap$Entry e
        11: .line 270
            aload 6 /* old */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 6 /* old */
        12: .line 272
            aload 7 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.hash:I
            ldc 2147483647
            iand
            iload 3 /* newCapacity */
            irem
            istore 8 /* index */
        start local 8 // int index
        13: .line 273
            aload 7 /* e */
            aload 4 /* newMap */
            iload 8 /* index */
            aaload
            putfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
        14: .line 274
            aload 4 /* newMap */
            iload 8 /* index */
            aload 7 /* e */
            aastore
        end local 8 // int index
        end local 7 // org.apache.commons.lang.IntHashMap$Entry e
        15: .line 268
      StackMap locals:
      StackMap stack:
            aload 6 /* old */
            ifnonnull 10
        end local 6 // org.apache.commons.lang.IntHashMap$Entry old
        16: .line 267
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifgt 8
        end local 5 // int i
        17: .line 277
            return
        end local 4 // org.apache.commons.lang.IntHashMap$Entry[] newMap
        end local 3 // int newCapacity
        end local 2 // org.apache.commons.lang.IntHashMap$Entry[] oldMap
        end local 1 // int oldCapacity
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   18     0         this  Lorg/apache/commons/lang/IntHashMap;
            1   18     1  oldCapacity  I
            2   18     2       oldMap  [Lorg/apache/commons/lang/IntHashMap$Entry;
            3   18     3  newCapacity  I
            4   18     4       newMap  [Lorg/apache/commons/lang/IntHashMap$Entry;
            7   17     5            i  I
            9   16     6          old  Lorg/apache/commons/lang/IntHashMap$Entry;
           11   15     7            e  Lorg/apache/commons/lang/IntHashMap$Entry;
           13   15     8        index  I

  public java.lang.Object put(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=3
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // int key
        start local 2 // java.lang.Object value
         0: .line 296
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 3 /* tab */
        start local 3 // org.apache.commons.lang.IntHashMap$Entry[] tab
         1: .line 297
            iload 1 /* key */
            istore 4 /* hash */
        start local 4 // int hash
         2: .line 298
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
        start local 5 // int index
         3: .line 299
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // org.apache.commons.lang.IntHashMap$Entry e
         4: goto 10
         5: .line 300
      StackMap locals: org.apache.commons.lang.IntHashMap int java.lang.Object org.apache.commons.lang.IntHashMap$Entry[] int int org.apache.commons.lang.IntHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.hash:I
            iload 4 /* hash */
            if_icmpne 9
         6: .line 301
            aload 6 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* old */
        start local 7 // java.lang.Object old
         7: .line 302
            aload 6 /* e */
            aload 2 /* value */
            putfield org.apache.commons.lang.IntHashMap$Entry.value:Ljava/lang/Object;
         8: .line 303
            aload 7 /* old */
            areturn
        end local 7 // java.lang.Object old
         9: .line 299
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 6 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 6 /* e */
            ifnonnull 5
        end local 6 // org.apache.commons.lang.IntHashMap$Entry e
        11: .line 307
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.count:I
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.threshold:I
            if_icmplt 15
        12: .line 309
            aload 0 /* this */
            invokevirtual org.apache.commons.lang.IntHashMap.rehash:()V
        13: .line 311
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 3 /* tab */
        14: .line 312
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
        15: .line 316
      StackMap locals:
      StackMap stack:
            new org.apache.commons.lang.IntHashMap$Entry
            dup
            iload 4 /* hash */
            iload 1 /* key */
            aload 2 /* value */
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            invokespecial org.apache.commons.lang.IntHashMap$Entry.<init>:(IILjava/lang/Object;Lorg/apache/commons/lang/IntHashMap$Entry;)V
            astore 6 /* e */
        start local 6 // org.apache.commons.lang.IntHashMap$Entry e
        16: .line 317
            aload 3 /* tab */
            iload 5 /* index */
            aload 6 /* e */
            aastore
        17: .line 318
            aload 0 /* this */
            dup
            getfield org.apache.commons.lang.IntHashMap.count:I
            iconst_1
            iadd
            putfield org.apache.commons.lang.IntHashMap.count:I
        18: .line 319
            aconst_null
            areturn
        end local 6 // org.apache.commons.lang.IntHashMap$Entry e
        end local 5 // int index
        end local 4 // int hash
        end local 3 // org.apache.commons.lang.IntHashMap$Entry[] tab
        end local 2 // java.lang.Object value
        end local 1 // int key
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Lorg/apache/commons/lang/IntHashMap;
            0   19     1    key  I
            0   19     2  value  Ljava/lang/Object;
            1   19     3    tab  [Lorg/apache/commons/lang/IntHashMap$Entry;
            2   19     4   hash  I
            3   19     5  index  I
            4   11     6      e  Lorg/apache/commons/lang/IntHashMap$Entry;
            7    9     7    old  Ljava/lang/Object;
           16   19     6      e  Lorg/apache/commons/lang/IntHashMap$Entry;
    MethodParameters:
       Name  Flags
      key    
      value  

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.apache.commons.lang.IntHashMap this
        start local 1 // int key
         0: .line 334
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 2 /* tab */
        start local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
         1: .line 335
            iload 1 /* key */
            istore 3 /* hash */
        start local 3 // int hash
         2: .line 336
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 337
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.apache.commons.lang.IntHashMap$Entry e
         4: aconst_null
            astore 6 /* prev */
        start local 6 // org.apache.commons.lang.IntHashMap$Entry prev
         5: goto 16
         6: .line 338
      StackMap locals: org.apache.commons.lang.IntHashMap int org.apache.commons.lang.IntHashMap$Entry[] int int org.apache.commons.lang.IntHashMap$Entry org.apache.commons.lang.IntHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 15
         7: .line 339
            aload 6 /* prev */
            ifnull 10
         8: .line 340
            aload 6 /* prev */
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            putfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
         9: .line 341
            goto 11
        10: .line 342
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iload 4 /* index */
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            aastore
        11: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.lang.IntHashMap.count:I
            iconst_1
            isub
            putfield org.apache.commons.lang.IntHashMap.count:I
        12: .line 345
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* oldValue */
        start local 7 // java.lang.Object oldValue
        13: .line 346
            aload 5 /* e */
            aconst_null
            putfield org.apache.commons.lang.IntHashMap$Entry.value:Ljava/lang/Object;
        14: .line 347
            aload 7 /* oldValue */
            areturn
        end local 7 // java.lang.Object oldValue
        15: .line 337
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            astore 6 /* prev */
            aload 5 /* e */
            getfield org.apache.commons.lang.IntHashMap$Entry.next:Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
        16: aload 5 /* e */
            ifnonnull 6
        end local 6 // org.apache.commons.lang.IntHashMap$Entry prev
        end local 5 // org.apache.commons.lang.IntHashMap$Entry e
        17: .line 350
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // org.apache.commons.lang.IntHashMap$Entry[] tab
        end local 1 // int key
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/apache/commons/lang/IntHashMap;
            0   18     1       key  I
            1   18     2       tab  [Lorg/apache/commons/lang/IntHashMap$Entry;
            2   18     3      hash  I
            3   18     4     index  I
            4   17     5         e  Lorg/apache/commons/lang/IntHashMap$Entry;
            5   17     6      prev  Lorg/apache/commons/lang/IntHashMap$Entry;
           13   15     7  oldValue  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public synchronized void clear();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.apache.commons.lang.IntHashMap this
         0: .line 357
            aload 0 /* this */
            getfield org.apache.commons.lang.IntHashMap.table:[Lorg/apache/commons/lang/IntHashMap$Entry;
            astore 1 /* tab */
        start local 1 // org.apache.commons.lang.IntHashMap$Entry[] tab
         1: .line 358
            aload 1 /* tab */
            arraylength
            istore 2 /* index */
        start local 2 // int index
         2: goto 4
         3: .line 359
      StackMap locals: org.apache.commons.lang.IntHashMap$Entry[] int
      StackMap stack:
            aload 1 /* tab */
            iload 2 /* index */
            aconst_null
            aastore
         4: .line 358
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ -1
            iload 2 /* index */
            ifge 3
        end local 2 // int index
         5: .line 361
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.lang.IntHashMap.count:I
         6: .line 362
            return
        end local 1 // org.apache.commons.lang.IntHashMap$Entry[] tab
        end local 0 // org.apache.commons.lang.IntHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/commons/lang/IntHashMap;
            1    7     1    tab  [Lorg/apache/commons/lang/IntHashMap$Entry;
            2    5     2  index  I
}
SourceFile: "IntHashMap.java"
NestMembers:
  org.apache.commons.lang.IntHashMap$Entry
InnerClasses:
  private Entry = org.apache.commons.lang.IntHashMap$Entry of org.apache.commons.lang.IntHashMap