public class org.apache.batik.util.SoftDoublyIndexedTable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.batik.util.SoftDoublyIndexedTable
  super_class: java.lang.Object
{
  protected static final int INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 11

  protected org.apache.batik.util.SoftDoublyIndexedTable$Entry[] table;
    descriptor: [Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
    flags: (0x0004) ACC_PROTECTED

  protected int count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.ref.ReferenceQueue referenceQueue;
    descriptor: Ljava/lang/ref/ReferenceQueue;
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
         0: .line 57
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield org.apache.batik.util.SoftDoublyIndexedTable.referenceQueue:Ljava/lang/ref/ReferenceQueue;
         2: .line 58
            aload 0 /* this */
            bipush 11
            anewarray org.apache.batik.util.SoftDoublyIndexedTable$Entry
            putfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
         3: .line 59
            return
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/batik/util/SoftDoublyIndexedTable;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
        start local 1 // int c
         0: .line 65
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield org.apache.batik.util.SoftDoublyIndexedTable.referenceQueue:Ljava/lang/ref/ReferenceQueue;
         2: .line 66
            aload 0 /* this */
            iload 1 /* c */
            anewarray org.apache.batik.util.SoftDoublyIndexedTable$Entry
            putfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
         3: .line 67
            return
        end local 1 // int c
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/batik/util/SoftDoublyIndexedTable;
            0    4     1     c  I
    MethodParameters:
      Name  Flags
      c     

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

  public java.lang.Object get(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
        start local 1 // java.lang.Object o1
        start local 2 // java.lang.Object o2
         0: .line 81
            aload 0 /* this */
            aload 1 /* o1 */
            aload 2 /* o2 */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable.hashCode:(Ljava/lang/Object;Ljava/lang/Object;)I
            ldc 2147483647
            iand
            istore 3 /* hash */
        start local 3 // int hash
         1: .line 82
            iload 3 /* hash */
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         2: .line 84
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
         3: goto 7
         4: .line 85
      StackMap locals: int int org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 6
            aload 5 /* e */
            aload 1 /* o1 */
            aload 2 /* o2 */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable$Entry.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 86
            aload 5 /* e */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable$Entry.get:()Ljava/lang/Object;
            areturn
         6: .line 84
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         7: aload 5 /* e */
            ifnonnull 4
        end local 5 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
         8: .line 89
            aconst_null
            areturn
        end local 4 // int index
        end local 3 // int hash
        end local 2 // java.lang.Object o2
        end local 1 // java.lang.Object o1
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/batik/util/SoftDoublyIndexedTable;
            0    9     1     o1  Ljava/lang/Object;
            0    9     2     o2  Ljava/lang/Object;
            1    9     3   hash  I
            2    9     4  index  I
            3    8     5      e  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
    MethodParameters:
      Name  Flags
      o1    
      o2    

  public java.lang.Object put(java.lang.Object, java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=11, locals=9, args_size=4
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
        start local 1 // java.lang.Object o1
        start local 2 // java.lang.Object o2
        start local 3 // java.lang.Object value
         0: .line 97
            aload 0 /* this */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable.removeClearedEntries:()V
         1: .line 99
            aload 0 /* this */
            aload 1 /* o1 */
            aload 2 /* o2 */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable.hashCode:(Ljava/lang/Object;Ljava/lang/Object;)I
            ldc 2147483647
            iand
            istore 4 /* hash */
        start local 4 // int hash
         2: .line 100
            iload 4 /* hash */
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            arraylength
            irem
            istore 5 /* index */
        start local 5 // int index
         3: .line 102
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
         4: .line 103
            aload 6 /* e */
            ifnull 20
         5: .line 104
            aload 6 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.hash:I
            iload 4 /* hash */
            if_icmpne 9
            aload 6 /* e */
            aload 1 /* o1 */
            aload 2 /* o2 */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable$Entry.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 9
         6: .line 105
            aload 6 /* e */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable$Entry.get:()Ljava/lang/Object;
            astore 7 /* old */
        start local 7 // java.lang.Object old
         7: .line 106
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 5 /* index */
            new org.apache.batik.util.SoftDoublyIndexedTable$Entry
            dup
            aload 0 /* this */
            iload 4 /* hash */
            aload 1 /* o1 */
            aload 2 /* o2 */
            aload 3 /* value */
            aload 6 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            invokespecial org.apache.batik.util.SoftDoublyIndexedTable$Entry.<init>:(Lorg/apache/batik/util/SoftDoublyIndexedTable;ILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;)V
            aastore
         8: .line 107
            aload 7 /* old */
            areturn
        end local 7 // java.lang.Object old
         9: .line 109
      StackMap locals: int int org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 6 /* e */
            astore 7 /* o */
        start local 7 // org.apache.batik.util.SoftDoublyIndexedTable$Entry o
        10: .line 110
            aload 6 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            astore 6 /* e */
        11: .line 111
            goto 19
        12: .line 112
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 6 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.hash:I
            iload 4 /* hash */
            if_icmpne 17
            aload 6 /* e */
            aload 1 /* o1 */
            aload 2 /* o2 */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable$Entry.match:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 17
        13: .line 113
            aload 6 /* e */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable$Entry.get:()Ljava/lang/Object;
            astore 8 /* old */
        start local 8 // java.lang.Object old
        14: .line 114
            new org.apache.batik.util.SoftDoublyIndexedTable$Entry
            dup
            aload 0 /* this */
            iload 4 /* hash */
            aload 1 /* o1 */
            aload 2 /* o2 */
            aload 3 /* value */
            aload 6 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            invokespecial org.apache.batik.util.SoftDoublyIndexedTable$Entry.<init>:(Lorg/apache/batik/util/SoftDoublyIndexedTable;ILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;)V
            astore 6 /* e */
        15: .line 115
            aload 7 /* o */
            aload 6 /* e */
            putfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
        16: .line 116
            aload 8 /* old */
            areturn
        end local 8 // java.lang.Object old
        17: .line 119
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            astore 7 /* o */
        18: .line 120
            aload 6 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            astore 6 /* e */
        19: .line 111
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            ifnonnull 12
        end local 7 // org.apache.batik.util.SoftDoublyIndexedTable$Entry o
        20: .line 125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            arraylength
            istore 7 /* len */
        start local 7 // int len
        21: .line 126
            aload 0 /* this */
            dup
            getfield org.apache.batik.util.SoftDoublyIndexedTable.count:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.batik.util.SoftDoublyIndexedTable.count:I
            iload 7 /* len */
            iload 7 /* len */
            iconst_2
            ishr
            isub
            if_icmplt 24
        22: .line 128
            aload 0 /* this */
            invokevirtual org.apache.batik.util.SoftDoublyIndexedTable.rehash:()V
        23: .line 129
            iload 4 /* hash */
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            arraylength
            irem
            istore 5 /* index */
        24: .line 132
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 5 /* index */
            new org.apache.batik.util.SoftDoublyIndexedTable$Entry
            dup
            aload 0 /* this */
            iload 4 /* hash */
            aload 1 /* o1 */
            aload 2 /* o2 */
            aload 3 /* value */
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 5 /* index */
            aaload
            invokespecial org.apache.batik.util.SoftDoublyIndexedTable$Entry.<init>:(Lorg/apache/batik/util/SoftDoublyIndexedTable;ILjava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;)V
            aastore
        25: .line 133
            aconst_null
            areturn
        end local 7 // int len
        end local 6 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
        end local 5 // int index
        end local 4 // int hash
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object o2
        end local 1 // java.lang.Object o1
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   26     0   this  Lorg/apache/batik/util/SoftDoublyIndexedTable;
            0   26     1     o1  Ljava/lang/Object;
            0   26     2     o2  Ljava/lang/Object;
            0   26     3  value  Ljava/lang/Object;
            2   26     4   hash  I
            3   26     5  index  I
            4   26     6      e  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            7    9     7    old  Ljava/lang/Object;
           10   20     7      o  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
           14   17     8    old  Ljava/lang/Object;
           21   26     7    len  I
    MethodParameters:
       Name  Flags
      o1     
      o2     
      value  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
         0: .line 140
            aload 0 /* this */
            bipush 11
            anewarray org.apache.batik.util.SoftDoublyIndexedTable$Entry
            putfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
         1: .line 141
            aload 0 /* this */
            iconst_0
            putfield org.apache.batik.util.SoftDoublyIndexedTable.count:I
         2: .line 142
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield org.apache.batik.util.SoftDoublyIndexedTable.referenceQueue:Ljava/lang/ref/ReferenceQueue;
         3: .line 143
            return
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/batik/util/SoftDoublyIndexedTable;

  protected void rehash();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
         0: .line 149
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            astore 1 /* oldTable */
        start local 1 // org.apache.batik.util.SoftDoublyIndexedTable$Entry[] oldTable
         1: .line 151
            aload 0 /* this */
            aload 1 /* oldTable */
            arraylength
            iconst_2
            imul
            iconst_1
            iadd
            anewarray org.apache.batik.util.SoftDoublyIndexedTable$Entry
            putfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
         2: .line 153
            aload 1 /* oldTable */
            arraylength
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         3: goto 13
         4: .line 154
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable$Entry[] int
      StackMap stack:
            aload 1 /* oldTable */
            iload 2 /* i */
            aaload
            astore 3 /* old */
        start local 3 // org.apache.batik.util.SoftDoublyIndexedTable$Entry old
         5: goto 11
         6: .line 155
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 3 /* old */
            astore 4 /* e */
        start local 4 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
         7: .line 156
            aload 3 /* old */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            astore 3 /* old */
         8: .line 158
            aload 4 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.hash:I
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            arraylength
            irem
            istore 5 /* index */
        start local 5 // int index
         9: .line 159
            aload 4 /* e */
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 5 /* index */
            aaload
            putfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
        10: .line 160
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 5 /* index */
            aload 4 /* e */
            aastore
        end local 5 // int index
        end local 4 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
        11: .line 154
      StackMap locals:
      StackMap stack:
            aload 3 /* old */
            ifnonnull 6
        end local 3 // org.apache.batik.util.SoftDoublyIndexedTable$Entry old
        12: .line 153
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
        13: iload 2 /* i */
            ifge 4
        end local 2 // int i
        14: .line 163
            return
        end local 1 // org.apache.batik.util.SoftDoublyIndexedTable$Entry[] oldTable
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lorg/apache/batik/util/SoftDoublyIndexedTable;
            1   15     1  oldTable  [Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            3   14     2         i  I
            5   12     3       old  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            7   11     4         e  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            9   11     5     index  I

  protected int hashCode(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
        start local 1 // java.lang.Object o1
        start local 2 // java.lang.Object o2
         0: .line 169
            aload 1 /* o1 */
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 1 /* o1 */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals:
      StackMap stack: int
         2: istore 3 /* result */
        start local 3 // int result
         3: .line 170
            iload 3 /* result */
            aload 2 /* o2 */
            ifnonnull 4
            iconst_0
            goto 5
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable java.lang.Object java.lang.Object int
      StackMap stack: int
         4: aload 2 /* o2 */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable java.lang.Object java.lang.Object int
      StackMap stack: int int
         5: ixor
            ireturn
        end local 3 // int result
        end local 2 // java.lang.Object o2
        end local 1 // java.lang.Object o1
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/batik/util/SoftDoublyIndexedTable;
            0    6     1      o1  Ljava/lang/Object;
            0    6     2      o2  Ljava/lang/Object;
            3    6     3  result  I
    MethodParameters:
      Name  Flags
      o1    
      o2    

  protected void removeClearedEntries();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
         0: .line 178
            goto 13
        start local 1 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
         1: .line 179
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 1 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.hash:I
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            arraylength
            irem
            istore 2 /* index */
        start local 2 // int index
         2: .line 180
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 2 /* index */
            aaload
            astore 3 /* t */
        start local 3 // org.apache.batik.util.SoftDoublyIndexedTable$Entry t
         3: .line 181
            aload 3 /* t */
            aload 1 /* e */
            if_acmpne 11
         4: .line 182
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.table:[Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            iload 2 /* index */
            aload 1 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            aastore
         5: .line 183
            goto 12
         6: .line 185
      StackMap locals: int org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 3 /* t */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            astore 4 /* c */
        start local 4 // org.apache.batik.util.SoftDoublyIndexedTable$Entry c
         7: .line 186
            aload 4 /* c */
            aload 1 /* e */
            if_acmpne 10
         8: .line 187
            aload 3 /* t */
            aload 1 /* e */
            getfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            putfield org.apache.batik.util.SoftDoublyIndexedTable$Entry.next:Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
         9: .line 188
            goto 12
        10: .line 190
      StackMap locals: org.apache.batik.util.SoftDoublyIndexedTable$Entry
      StackMap stack:
            aload 4 /* c */
            astore 3 /* t */
        end local 4 // org.apache.batik.util.SoftDoublyIndexedTable$Entry c
        11: .line 184
      StackMap locals:
      StackMap stack:
            aload 3 /* t */
            ifnonnull 6
        12: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.batik.util.SoftDoublyIndexedTable.count:I
            iconst_1
            isub
            putfield org.apache.batik.util.SoftDoublyIndexedTable.count:I
        end local 3 // org.apache.batik.util.SoftDoublyIndexedTable$Entry t
        end local 2 // int index
        end local 1 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
        13: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.batik.util.SoftDoublyIndexedTable.referenceQueue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            checkcast org.apache.batik.util.SoftDoublyIndexedTable$Entry
            dup
            astore 1 /* e */
        start local 1 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
        14: ifnonnull 1
        15: .line 195
            return
        end local 1 // org.apache.batik.util.SoftDoublyIndexedTable$Entry e
        end local 0 // org.apache.batik.util.SoftDoublyIndexedTable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   16     0   this  Lorg/apache/batik/util/SoftDoublyIndexedTable;
            1   13     1      e  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
           14   16     1      e  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            2   13     2  index  I
            3   13     3      t  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
            7   11     4      c  Lorg/apache/batik/util/SoftDoublyIndexedTable$Entry;
}
SourceFile: "SoftDoublyIndexedTable.java"
NestMembers:
  org.apache.batik.util.SoftDoublyIndexedTable$Entry
InnerClasses:
  protected Entry = org.apache.batik.util.SoftDoublyIndexedTable$Entry of org.apache.batik.util.SoftDoublyIndexedTable