class javax.swing.TimerQueue implements java.lang.Runnable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: javax.swing.TimerQueue
  super_class: java.lang.Object
{
  private static final java.lang.Object sharedInstanceKey;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final java.lang.Object expiredTimersKey;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.concurrent.DelayQueue<javax.swing.TimerQueue$DelayedTimer> queue;
    descriptor: Ljava/util/concurrent/DelayQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/DelayQueue<Ljavax/swing/TimerQueue$DelayedTimer;>;

  private volatile boolean running;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final java.util.concurrent.locks.Lock runningLock;
    descriptor: Ljava/util/concurrent/locks/Lock;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.lang.Object classLock;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final long NANO_ORIGIN;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 48
            ldc Ljavax/swing/TimerQueue;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic javax.swing.TimerQueue.$assertionsDisabled:Z
         3: .line 51
            new java.lang.StringBuffer
            dup
            ldc "TimerQueue.sharedInstanceKey"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
         4: .line 50
            putstatic javax.swing.TimerQueue.sharedInstanceKey:Ljava/lang/Object;
         5: .line 53
            new java.lang.StringBuffer
            dup
            ldc "TimerQueue.expiredTimersKey"
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
         6: .line 52
            putstatic javax.swing.TimerQueue.expiredTimersKey:Ljava/lang/Object;
         7: .line 62
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic javax.swing.TimerQueue.classLock:Ljava/lang/Object;
         8: .line 65
            invokestatic java.lang.System.nanoTime:()J
            putstatic javax.swing.TimerQueue.NANO_ORIGIN:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 71
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 72
            aload 0 /* this */
            new java.util.concurrent.DelayQueue
            dup
            invokespecial java.util.concurrent.DelayQueue.<init>:()V
            putfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
         2: .line 74
            aload 0 /* this */
            new java.util.concurrent.locks.ReentrantLock
            dup
            invokespecial java.util.concurrent.locks.ReentrantLock.<init>:()V
            putfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
         3: .line 75
            aload 0 /* this */
            invokevirtual javax.swing.TimerQueue.startIfNeeded:()V
         4: .line 76
            return
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/swing/TimerQueue;

  public static javax.swing.TimerQueue sharedInstance();
    descriptor: ()Ljavax/swing/TimerQueue;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=0
         0: .line 80
            getstatic javax.swing.TimerQueue.classLock:Ljava/lang/Object;
            dup
            astore 0
            monitorenter
         1: .line 83
            getstatic javax.swing.TimerQueue.sharedInstanceKey:Ljava/lang/Object;
         2: .line 82
            invokestatic javax.swing.SwingUtilities.appContextGet:(Ljava/lang/Object;)Ljava/lang/Object;
         3: .line 81
            checkcast javax.swing.TimerQueue
            astore 1 /* sharedInst */
        start local 1 // javax.swing.TimerQueue sharedInst
         4: .line 84
            aload 1 /* sharedInst */
            ifnonnull 7
         5: .line 85
            new javax.swing.TimerQueue
            dup
            invokespecial javax.swing.TimerQueue.<init>:()V
            astore 1 /* sharedInst */
         6: .line 86
            getstatic javax.swing.TimerQueue.sharedInstanceKey:Ljava/lang/Object;
            aload 1 /* sharedInst */
            invokestatic javax.swing.SwingUtilities.appContextPut:(Ljava/lang/Object;Ljava/lang/Object;)V
         7: .line 88
      StackMap locals: java.lang.Object javax.swing.TimerQueue
      StackMap stack:
            aload 1 /* sharedInst */
            aload 0
            monitorexit
         8: areturn
        end local 1 // javax.swing.TimerQueue sharedInst
         9: .line 80
      StackMap locals: java.lang.Object
      StackMap stack: java.lang.Throwable
            aload 0
            monitorexit
        10: athrow
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            4    9     1  sharedInst  Ljavax/swing/TimerQueue;
      Exception table:
        from    to  target  type
           1     8       9  any
           9    10       9  any

  void startIfNeeded();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 94
            aload 0 /* this */
            getfield javax.swing.TimerQueue.running:Z
            ifne 12
         1: .line 95
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         2: .line 96
            aload 0 /* this */
            getfield javax.swing.TimerQueue.running:Z
            ifeq 4
         3: .line 97
            return
         4: .line 100
      StackMap locals:
      StackMap stack:
            invokestatic sun.awt.AppContext.getAppContext:()Lsun/awt/AppContext;
            invokevirtual sun.awt.AppContext.getThreadGroup:()Ljava/lang/ThreadGroup;
            astore 1 /* threadGroup */
        start local 1 // java.lang.ThreadGroup threadGroup
         5: .line 101
            aload 0 /* this */
            aload 1 /* threadGroup */
            invokedynamic run(Ljavax/swing/TimerQueue;Ljava/lang/ThreadGroup;)Ljava/security/PrivilegedAction;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/lang/Object;
                  javax/swing/TimerQueue.lambda$0(Ljava/lang/ThreadGroup;)Ljava/lang/Object; (7)
                  ()Ljava/lang/Object;
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            pop
         6: .line 110
            aload 0 /* this */
            iconst_1
            putfield javax.swing.TimerQueue.running:Z
        end local 1 // java.lang.ThreadGroup threadGroup
         7: .line 111
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 2
         9: .line 112
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        10: .line 113
            aload 2
            athrow
        11: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        12: .line 115
      StackMap locals:
      StackMap stack:
            return
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Ljavax/swing/TimerQueue;
            5    7     1  threadGroup  Ljava/lang/ThreadGroup;
      Exception table:
        from    to  target  type
           4     8       8  any

  void addTimer(javax.swing.Timer, long);
    descriptor: (Ljavax/swing/Timer;J)V
    flags: (0x0000) 
    Code:
      stack=8, locals=5, args_size=3
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.Timer timer
        start local 2 // long delayMillis
         0: .line 118
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 121
            aload 0 /* this */
            aload 1 /* timer */
            invokevirtual javax.swing.TimerQueue.containsTimer:(Ljavax/swing/Timer;)Z
            ifne 11
         2: .line 122
            aload 0 /* this */
            new javax.swing.TimerQueue$DelayedTimer
            dup
            aload 1 /* timer */
         3: .line 123
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            lload 2 /* delayMillis */
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
         4: .line 124
            invokestatic javax.swing.TimerQueue.now:()J
         5: .line 123
            ladd
            invokespecial javax.swing.TimerQueue$DelayedTimer.<init>:(Ljavax/swing/Timer;J)V
         6: .line 122
            invokevirtual javax.swing.TimerQueue.addTimer:(Ljavax/swing/TimerQueue$DelayedTimer;)V
         7: .line 126
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 4
         9: .line 127
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        10: .line 128
            aload 4
            athrow
        11: .line 127
      StackMap locals:
      StackMap stack:
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        12: .line 129
            return
        end local 2 // long delayMillis
        end local 1 // javax.swing.Timer timer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Ljavax/swing/TimerQueue;
            0   13     1        timer  Ljavax/swing/Timer;
            0   13     2  delayMillis  J
      Exception table:
        from    to  target  type
           1     8       8  any
    MethodParameters:
             Name  Flags
      timer        
      delayMillis  

  private void addTimer(javax.swing.TimerQueue$DelayedTimer);
    descriptor: (Ljavax/swing/TimerQueue$DelayedTimer;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         0: .line 132
            getstatic javax.swing.TimerQueue.$assertionsDisabled:Z
            ifne 2
            aload 1 /* delayedTimer */
            ifnull 1
            aload 0 /* this */
            aload 1 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            invokevirtual javax.swing.TimerQueue.containsTimer:(Ljavax/swing/Timer;)Z
            ifeq 2
      StackMap locals:
      StackMap stack:
         1: new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 134
      StackMap locals:
      StackMap stack:
            aload 1 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            astore 2 /* timer */
        start local 2 // javax.swing.Timer timer
         3: .line 135
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         4: .line 137
            aload 2 /* timer */
            aload 1 /* delayedTimer */
            putfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
         5: .line 138
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            aload 1 /* delayedTimer */
            invokevirtual java.util.concurrent.DelayQueue.add:(Ljava/util/concurrent/Delayed;)Z
            pop
         6: .line 139
            goto 10
      StackMap locals: javax.swing.TimerQueue javax.swing.TimerQueue$DelayedTimer javax.swing.Timer
      StackMap stack: java.lang.Throwable
         7: astore 3
         8: .line 140
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 141
            aload 3
            athrow
        10: .line 140
      StackMap locals:
      StackMap stack:
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        11: .line 142
            return
        end local 2 // javax.swing.Timer timer
        end local 1 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Ljavax/swing/TimerQueue;
            0   12     1  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;
            3   12     2         timer  Ljavax/swing/Timer;
      Exception table:
        from    to  target  type
           4     7       7  any
    MethodParameters:
              Name  Flags
      delayedTimer  

  void removeTimer(javax.swing.Timer);
    descriptor: (Ljavax/swing/Timer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.Timer timer
         0: .line 145
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 147
            aload 1 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            ifnull 8
         2: .line 148
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            aload 1 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            invokevirtual java.util.concurrent.DelayQueue.remove:(Ljava/lang/Object;)Z
            pop
         3: .line 149
            aload 1 /* timer */
            aconst_null
            putfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
         4: .line 151
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 2
         6: .line 152
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         7: .line 153
            aload 2
            athrow
         8: .line 152
      StackMap locals:
      StackMap stack:
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         9: .line 154
            return
        end local 1 // javax.swing.Timer timer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Ljavax/swing/TimerQueue;
            0   10     1  timer  Ljavax/swing/Timer;
      Exception table:
        from    to  target  type
           1     5       5  any
    MethodParameters:
       Name  Flags
      timer  

  boolean containsTimer(javax.swing.Timer);
    descriptor: (Ljavax/swing/Timer;)Z
    flags: (0x0000) 
    Code:
      stack=1, locals=4, args_size=2
        start local 0 // javax.swing.TimerQueue this
        start local 1 // javax.swing.Timer timer
         0: .line 157
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 159
            aload 1 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            ifnull 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: istore 3
         4: .line 161
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         5: .line 159
            iload 3
            ireturn
         6: .line 160
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         7: .line 161
            aload 1 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
         8: .line 162
            aload 2
            athrow
        end local 1 // javax.swing.Timer timer
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljavax/swing/TimerQueue;
            0    9     1  timer  Ljavax/swing/Timer;
      Exception table:
        from    to  target  type
           1     4       6  any
    MethodParameters:
       Name  Flags
      timer  

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 167
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         1: .line 169
            goto 28
         2: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            invokevirtual java.util.concurrent.DelayQueue.take:()Ljava/util/concurrent/Delayed;
            checkcast javax.swing.TimerQueue$DelayedTimer
            astore 1 /* runningTimer */
        start local 1 // javax.swing.TimerQueue$DelayedTimer runningTimer
         3: .line 172
            aload 1 /* runningTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            astore 2 /* timer */
        start local 2 // javax.swing.Timer timer
         4: .line 173
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.lock:()V
         5: .line 175
            aload 2 /* timer */
            getfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
            astore 3 /* delayedTimer */
        start local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         6: .line 176
            aload 3 /* delayedTimer */
            aload 1 /* runningTimer */
            if_acmpne 16
         7: .line 183
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.post:()V
         8: .line 184
            aload 2 /* timer */
            aconst_null
            putfield javax.swing.Timer.delayedTimer:Ljavax/swing/TimerQueue$DelayedTimer;
         9: .line 185
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.isRepeats:()Z
            ifeq 16
        10: .line 186
            aload 3 /* delayedTimer */
            invokestatic javax.swing.TimerQueue.now:()J
        11: .line 187
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
        12: .line 188
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getDelay:()I
            i2l
        13: .line 187
            invokevirtual java.util.concurrent.TimeUnit.toNanos:(J)J
            ladd
        14: .line 186
            invokevirtual javax.swing.TimerQueue$DelayedTimer.setTime:(J)V
        15: .line 189
            aload 0 /* this */
            aload 3 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue.addTimer:(Ljavax/swing/TimerQueue$DelayedTimer;)V
        16: .line 194
      StackMap locals: javax.swing.TimerQueue$DelayedTimer javax.swing.Timer javax.swing.TimerQueue$DelayedTimer
      StackMap stack:
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.newCondition:()Ljava/util/concurrent/locks/Condition;
            lconst_1
            invokeinterface java.util.concurrent.locks.Condition.awaitNanos:(J)J
            pop2
        end local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        17: .line 195
            goto 23
      StackMap locals: javax.swing.TimerQueue javax.swing.TimerQueue$DelayedTimer javax.swing.Timer
      StackMap stack: java.lang.SecurityException
        18: pop
        19: .line 197
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
            goto 28
        20: .line 196
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
        21: .line 197
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        22: .line 198
            aload 4
            athrow
        23: .line 197
      StackMap locals:
      StackMap stack:
            aload 2 /* timer */
            invokevirtual javax.swing.Timer.getLock:()Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        end local 2 // javax.swing.Timer timer
        end local 1 // javax.swing.TimerQueue$DelayedTimer runningTimer
        24: .line 199
            goto 28
      StackMap locals: javax.swing.TimerQueue
      StackMap stack: java.lang.InterruptedException
        25: pop
        26: .line 202
            invokestatic sun.awt.AppContext.getAppContext:()Lsun/awt/AppContext;
            invokevirtual sun.awt.AppContext.isDisposed:()Z
            ifeq 28
        27: .line 203
            goto 40
        28: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.swing.TimerQueue.running:Z
            ifne 2
        29: .line 207
            goto 40
        30: .line 208
      StackMap locals:
      StackMap stack: java.lang.ThreadDeath
            astore 1 /* td */
        start local 1 // java.lang.ThreadDeath td
        31: .line 210
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            invokevirtual java.util.concurrent.DelayQueue.iterator:()Ljava/util/Iterator;
            astore 3
            goto 34
      StackMap locals: javax.swing.TimerQueue java.lang.ThreadDeath top java.util.Iterator
      StackMap stack:
        32: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.swing.TimerQueue$DelayedTimer
            astore 2 /* delayedTimer */
        start local 2 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        33: .line 211
            aload 2 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            invokevirtual javax.swing.Timer.cancelEvent:()V
        end local 2 // javax.swing.TimerQueue$DelayedTimer delayedTimer
        34: .line 210
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 32
        35: .line 213
            aload 1 /* td */
            athrow
        end local 1 // java.lang.ThreadDeath td
        36: .line 214
      StackMap locals: javax.swing.TimerQueue
      StackMap stack: java.lang.Throwable
            astore 5
        37: .line 215
            aload 0 /* this */
            iconst_0
            putfield javax.swing.TimerQueue.running:Z
        38: .line 216
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        39: .line 217
            aload 5
            athrow
        40: .line 215
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield javax.swing.TimerQueue.running:Z
        41: .line 216
            aload 0 /* this */
            getfield javax.swing.TimerQueue.runningLock:Ljava/util/concurrent/locks/Lock;
            invokeinterface java.util.concurrent.locks.Lock.unlock:()V
        42: .line 218
            return
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   43     0          this  Ljavax/swing/TimerQueue;
            3   24     1  runningTimer  Ljavax/swing/TimerQueue$DelayedTimer;
            4   24     2         timer  Ljavax/swing/Timer;
            6   17     3  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;
           31   36     1            td  Ljava/lang/ThreadDeath;
           33   34     2  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;
      Exception table:
        from    to  target  type
           5    17      18  Class java.lang.SecurityException
           5    19      20  any
           2    24      25  Class java.lang.InterruptedException
           1    29      30  Class java.lang.ThreadDeath
           1    36      36  any

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // javax.swing.TimerQueue this
         0: .line 222
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuilder buf
         1: .line 223
            aload 1 /* buf */
            ldc "TimerQueue ("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 224
            iconst_1
            istore 2 /* isFirst */
        start local 2 // boolean isFirst
         3: .line 225
            aload 0 /* this */
            getfield javax.swing.TimerQueue.queue:Ljava/util/concurrent/DelayQueue;
            invokevirtual java.util.concurrent.DelayQueue.iterator:()Ljava/util/Iterator;
            astore 4
            goto 9
      StackMap locals: javax.swing.TimerQueue java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast javax.swing.TimerQueue$DelayedTimer
            astore 3 /* delayedTimer */
        start local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         5: .line 226
            iload 2 /* isFirst */
            ifne 7
         6: .line 227
            aload 1 /* buf */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 229
      StackMap locals: javax.swing.TimerQueue java.lang.StringBuilder int javax.swing.TimerQueue$DelayedTimer java.util.Iterator
      StackMap stack:
            aload 1 /* buf */
            aload 3 /* delayedTimer */
            invokevirtual javax.swing.TimerQueue$DelayedTimer.getTimer:()Ljavax/swing/Timer;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 230
            iconst_0
            istore 2 /* isFirst */
        end local 3 // javax.swing.TimerQueue$DelayedTimer delayedTimer
         9: .line 225
      StackMap locals: javax.swing.TimerQueue java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        10: .line 232
            aload 1 /* buf */
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        11: .line 233
            aload 1 /* buf */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // boolean isFirst
        end local 1 // java.lang.StringBuilder buf
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0          this  Ljavax/swing/TimerQueue;
            1   12     1           buf  Ljava/lang/StringBuilder;
            3   12     2       isFirst  Z
            5    9     3  delayedTimer  Ljavax/swing/TimerQueue$DelayedTimer;

  private static long now();
    descriptor: ()J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 240
            invokestatic java.lang.System.nanoTime:()J
            getstatic javax.swing.TimerQueue.NANO_ORIGIN:J
            lsub
            lreturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private java.lang.Object lambda$0(java.lang.ThreadGroup);
    descriptor: (Ljava/lang/ThreadGroup;)Ljava/lang/Object;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // javax.swing.TimerQueue this
         0: .line 102
            ldc "TimerQueue"
            astore 2 /* name */
        start local 2 // java.lang.String name
         1: .line 104
            new java.lang.Thread
            dup
            aload 1
            aload 0 /* this */
            aload 2 /* name */
            lconst_0
            iconst_0
            invokespecial java.lang.Thread.<init>:(Ljava/lang/ThreadGroup;Ljava/lang/Runnable;Ljava/lang/String;JZ)V
         2: .line 103
            astore 3 /* timerThread */
        start local 3 // java.lang.Thread timerThread
         3: .line 105
            aload 3 /* timerThread */
            iconst_1
            invokevirtual java.lang.Thread.setDaemon:(Z)V
         4: .line 106
            aload 3 /* timerThread */
            iconst_5
            invokevirtual java.lang.Thread.setPriority:(I)V
         5: .line 107
            aload 3 /* timerThread */
            invokevirtual java.lang.Thread.start:()V
         6: .line 108
            aconst_null
            areturn
        end local 3 // java.lang.Thread timerThread
        end local 2 // java.lang.String name
        end local 0 // javax.swing.TimerQueue this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Ljavax/swing/TimerQueue;
            1    7     2         name  Ljava/lang/String;
            3    7     3  timerThread  Ljava/lang/Thread;
}
SourceFile: "TimerQueue.java"
NestMembers:
  javax.swing.TimerQueue$DelayedTimer
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  DelayedTimer = javax.swing.TimerQueue$DelayedTimer of javax.swing.TimerQueue