public class java.util.Timer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.util.Timer
  super_class: java.lang.Object
{
  private final java.util.TaskQueue queue;
    descriptor: Ljava/util/TaskQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.TimerThread thread;
    descriptor: Ljava/util/TimerThread;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.Object threadReaper;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final java.util.concurrent.atomic.AtomicInteger nextSerialNumber;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 122
            new java.util.concurrent.atomic.AtomicInteger
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:(I)V
            putstatic java.util.Timer.nextSerialNumber:Ljava/util/concurrent/atomic/AtomicInteger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static int serialNumber();
    descriptor: ()I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 124
            getstatic java.util.Timer.nextSerialNumber:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.getAndIncrement:()I
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.util.Timer this
         0: .line 132
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Timer-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.util.Timer.serialNumber:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.util.Timer.<init>:(Ljava/lang/String;)V
         1: .line 133
            return
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/Timer;

  public void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.Timer this
        start local 1 // boolean isDaemon
         0: .line 146
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "Timer-"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            invokestatic java.util.Timer.serialNumber:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            iload 1 /* isDaemon */
            invokespecial java.util.Timer.<init>:(Ljava/lang/String;Z)V
         1: .line 147
            return
        end local 1 // boolean isDaemon
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Ljava/util/Timer;
            0    2     1  isDaemon  Z
    MethodParameters:
          Name  Flags
      isDaemon  

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.util.Timer this
        start local 1 // java.lang.String name
         0: .line 158
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 96
            aload 0 /* this */
            new java.util.TaskQueue
            dup
            invokespecial java.util.TaskQueue.<init>:()V
            putfield java.util.Timer.queue:Ljava/util/TaskQueue;
         2: .line 101
            aload 0 /* this */
            new java.util.TimerThread
            dup
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokespecial java.util.TimerThread.<init>:(Ljava/util/TaskQueue;)V
            putfield java.util.Timer.thread:Ljava/util/TimerThread;
         3: .line 110
            aload 0 /* this */
            new java.util.Timer$1
            dup
            aload 0 /* this */
            invokespecial java.util.Timer$1.<init>:(Ljava/util/Timer;)V
            putfield java.util.Timer.threadReaper:Ljava/lang/Object;
         4: .line 159
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            aload 1 /* name */
            invokevirtual java.util.TimerThread.setName:(Ljava/lang/String;)V
         5: .line 160
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            invokevirtual java.util.TimerThread.start:()V
         6: .line 161
            return
        end local 1 // java.lang.String name
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/util/Timer;
            0    7     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void <init>(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.util.Timer this
        start local 1 // java.lang.String name
        start local 2 // boolean isDaemon
         0: .line 173
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 96
            aload 0 /* this */
            new java.util.TaskQueue
            dup
            invokespecial java.util.TaskQueue.<init>:()V
            putfield java.util.Timer.queue:Ljava/util/TaskQueue;
         2: .line 101
            aload 0 /* this */
            new java.util.TimerThread
            dup
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokespecial java.util.TimerThread.<init>:(Ljava/util/TaskQueue;)V
            putfield java.util.Timer.thread:Ljava/util/TimerThread;
         3: .line 110
            aload 0 /* this */
            new java.util.Timer$1
            dup
            aload 0 /* this */
            invokespecial java.util.Timer$1.<init>:(Ljava/util/Timer;)V
            putfield java.util.Timer.threadReaper:Ljava/lang/Object;
         4: .line 174
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            aload 1 /* name */
            invokevirtual java.util.TimerThread.setName:(Ljava/lang/String;)V
         5: .line 175
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            iload 2 /* isDaemon */
            invokevirtual java.util.TimerThread.setDaemon:(Z)V
         6: .line 176
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            invokevirtual java.util.TimerThread.start:()V
         7: .line 177
            return
        end local 2 // boolean isDaemon
        end local 1 // java.lang.String name
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljava/util/Timer;
            0    8     1      name  Ljava/lang/String;
            0    8     2  isDaemon  Z
    MethodParameters:
          Name  Flags
      name      
      isDaemon  

  public void schedule(java.util.TimerTask, long);
    descriptor: (Ljava/util/TimerTask;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // long delay
         0: .line 191
            lload 2 /* delay */
            lconst_0
            lcmp
            ifge 2
         1: .line 192
            new java.lang.IllegalArgumentException
            dup
            ldc "Negative delay."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* task */
            invokestatic java.lang.System.currentTimeMillis:()J
            lload 2 /* delay */
            ladd
            lconst_0
            invokevirtual java.util.Timer.sched:(Ljava/util/TimerTask;JJ)V
         3: .line 194
            return
        end local 2 // long delay
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljava/util/Timer;
            0    4     1   task  Ljava/util/TimerTask;
            0    4     2  delay  J
    MethodParameters:
       Name  Flags
      task   
      delay  

  public void schedule(java.util.TimerTask, java.util.Date);
    descriptor: (Ljava/util/TimerTask;Ljava/util/Date;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // java.util.Date time
         0: .line 208
            aload 0 /* this */
            aload 1 /* task */
            aload 2 /* time */
            invokevirtual java.util.Date.getTime:()J
            lconst_0
            invokevirtual java.util.Timer.sched:(Ljava/util/TimerTask;JJ)V
         1: .line 209
            return
        end local 2 // java.util.Date time
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/Timer;
            0    2     1  task  Ljava/util/TimerTask;
            0    2     2  time  Ljava/util/Date;
    MethodParameters:
      Name  Flags
      task  
      time  

  public void schedule(java.util.TimerTask, long, long);
    descriptor: (Ljava/util/TimerTask;JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // long delay
        start local 4 // long period
         0: .line 244
            lload 2 /* delay */
            lconst_0
            lcmp
            ifge 2
         1: .line 245
            new java.lang.IllegalArgumentException
            dup
            ldc "Negative delay."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 246
      StackMap locals:
      StackMap stack:
            lload 4 /* period */
            lconst_0
            lcmp
            ifgt 4
         3: .line 247
            new java.lang.IllegalArgumentException
            dup
            ldc "Non-positive period."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 248
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* task */
            invokestatic java.lang.System.currentTimeMillis:()J
            lload 2 /* delay */
            ladd
            lload 4 /* period */
            lneg
            invokevirtual java.util.Timer.sched:(Ljava/util/TimerTask;JJ)V
         5: .line 249
            return
        end local 4 // long period
        end local 2 // long delay
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljava/util/Timer;
            0    6     1    task  Ljava/util/TimerTask;
            0    6     2   delay  J
            0    6     4  period  J
    MethodParameters:
        Name  Flags
      task    
      delay   
      period  

  public void schedule(java.util.TimerTask, java.util.Date, long);
    descriptor: (Ljava/util/TimerTask;Ljava/util/Date;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // java.util.Date firstTime
        start local 3 // long period
         0: .line 285
            lload 3 /* period */
            lconst_0
            lcmp
            ifgt 2
         1: .line 286
            new java.lang.IllegalArgumentException
            dup
            ldc "Non-positive period."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* task */
            aload 2 /* firstTime */
            invokevirtual java.util.Date.getTime:()J
            lload 3 /* period */
            lneg
            invokevirtual java.util.Timer.sched:(Ljava/util/TimerTask;JJ)V
         3: .line 288
            return
        end local 3 // long period
        end local 2 // java.util.Date firstTime
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljava/util/Timer;
            0    4     1       task  Ljava/util/TimerTask;
            0    4     2  firstTime  Ljava/util/Date;
            0    4     3     period  J
    MethodParameters:
           Name  Flags
      task       
      firstTime  
      period     

  public void scheduleAtFixedRate(java.util.TimerTask, long, long);
    descriptor: (Ljava/util/TimerTask;JJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // long delay
        start local 4 // long period
         0: .line 324
            lload 2 /* delay */
            lconst_0
            lcmp
            ifge 2
         1: .line 325
            new java.lang.IllegalArgumentException
            dup
            ldc "Negative delay."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 326
      StackMap locals:
      StackMap stack:
            lload 4 /* period */
            lconst_0
            lcmp
            ifgt 4
         3: .line 327
            new java.lang.IllegalArgumentException
            dup
            ldc "Non-positive period."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* task */
            invokestatic java.lang.System.currentTimeMillis:()J
            lload 2 /* delay */
            ladd
            lload 4 /* period */
            invokevirtual java.util.Timer.sched:(Ljava/util/TimerTask;JJ)V
         5: .line 329
            return
        end local 4 // long period
        end local 2 // long delay
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Ljava/util/Timer;
            0    6     1    task  Ljava/util/TimerTask;
            0    6     2   delay  J
            0    6     4  period  J
    MethodParameters:
        Name  Flags
      task    
      delay   
      period  

  public void scheduleAtFixedRate(java.util.TimerTask, java.util.Date, long);
    descriptor: (Ljava/util/TimerTask;Ljava/util/Date;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // java.util.Date firstTime
        start local 3 // long period
         0: .line 368
            lload 3 /* period */
            lconst_0
            lcmp
            ifgt 2
         1: .line 369
            new java.lang.IllegalArgumentException
            dup
            ldc "Non-positive period."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* task */
            aload 2 /* firstTime */
            invokevirtual java.util.Date.getTime:()J
            lload 3 /* period */
            invokevirtual java.util.Timer.sched:(Ljava/util/TimerTask;JJ)V
         3: .line 371
            return
        end local 3 // long period
        end local 2 // java.util.Date firstTime
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Ljava/util/Timer;
            0    4     1       task  Ljava/util/TimerTask;
            0    4     2  firstTime  Ljava/util/Date;
            0    4     3     period  J
    MethodParameters:
           Name  Flags
      task       
      firstTime  
      period     

  private void sched(java.util.TimerTask, long, long);
    descriptor: (Ljava/util/TimerTask;JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // java.util.Timer this
        start local 1 // java.util.TimerTask task
        start local 2 // long time
        start local 4 // long period
         0: .line 387
            lload 2 /* time */
            lconst_0
            lcmp
            ifge 2
         1: .line 388
            new java.lang.IllegalArgumentException
            dup
            ldc "Illegal execution time."
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 392
      StackMap locals:
      StackMap stack:
            lload 4 /* period */
            invokestatic java.lang.Math.abs:(J)J
            ldc 4611686018427387903
            lcmp
            ifle 4
         3: .line 393
            lload 4 /* period */
            iconst_1
            lshr
            lstore 4 /* period */
         4: .line 395
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            dup
            astore 6
            monitorenter
         5: .line 396
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            getfield java.util.TimerThread.newTasksMayBeScheduled:Z
            ifne 7
         6: .line 397
            new java.lang.IllegalStateException
            dup
            ldc "Timer already cancelled."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 399
      StackMap locals: java.util.TaskQueue
      StackMap stack:
            aload 1 /* task */
            getfield java.util.TimerTask.lock:Ljava/lang/Object;
            dup
            astore 7
            monitorenter
         8: .line 400
            aload 1 /* task */
            getfield java.util.TimerTask.state:I
            ifeq 12
         9: .line 401
            new java.lang.IllegalStateException
            dup
        10: .line 402
            ldc "Task already scheduled or cancelled"
        11: .line 401
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        12: .line 403
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* task */
            lload 2 /* time */
            putfield java.util.TimerTask.nextExecutionTime:J
        13: .line 404
            aload 1 /* task */
            lload 4 /* period */
            putfield java.util.TimerTask.period:J
        14: .line 405
            aload 1 /* task */
            iconst_1
            putfield java.util.TimerTask.state:I
        15: .line 399
            aload 7
            monitorexit
        16: goto 19
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: aload 7
            monitorexit
        18: athrow
        19: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            aload 1 /* task */
            invokevirtual java.util.TaskQueue.add:(Ljava/util/TimerTask;)V
        20: .line 409
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokevirtual java.util.TaskQueue.getMin:()Ljava/util/TimerTask;
            aload 1 /* task */
            if_acmpne 22
        21: .line 410
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokevirtual java.lang.Object.notify:()V
        22: .line 395
      StackMap locals:
      StackMap stack:
            aload 6
            monitorexit
        23: goto 26
      StackMap locals:
      StackMap stack: java.lang.Throwable
        24: aload 6
            monitorexit
        25: athrow
        26: .line 412
      StackMap locals:
      StackMap stack:
            return
        end local 4 // long period
        end local 2 // long time
        end local 1 // java.util.TimerTask task
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0    this  Ljava/util/Timer;
            0   27     1    task  Ljava/util/TimerTask;
            0   27     2    time  J
            0   27     4  period  J
      Exception table:
        from    to  target  type
           8    16      17  any
          17    18      17  any
           5    23      24  any
          24    25      24  any
    MethodParameters:
        Name  Flags
      task    
      time    
      period  

  public void cancel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.util.Timer this
         0: .line 429
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            dup
            astore 1
            monitorenter
         1: .line 430
            aload 0 /* this */
            getfield java.util.Timer.thread:Ljava/util/TimerThread;
            iconst_0
            putfield java.util.TimerThread.newTasksMayBeScheduled:Z
         2: .line 431
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokevirtual java.util.TaskQueue.clear:()V
         3: .line 432
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokevirtual java.lang.Object.notify:()V
         4: .line 429
            aload 1
            monitorexit
         5: goto 8
      StackMap locals: java.util.Timer java.util.TaskQueue
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 434
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/util/Timer;
      Exception table:
        from    to  target  type
           1     5       6  any
           6     7       6  any

  public int purge();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.util.Timer this
         0: .line 457
            iconst_0
            istore 1 /* result */
        start local 1 // int result
         1: .line 459
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            dup
            astore 2
            monitorenter
         2: .line 460
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokevirtual java.util.TaskQueue.size:()I
            istore 3 /* i */
        start local 3 // int i
         3: goto 8
         4: .line 461
      StackMap locals: int java.util.TaskQueue int
      StackMap stack:
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            iload 3 /* i */
            invokevirtual java.util.TaskQueue.get:(I)Ljava/util/TimerTask;
            getfield java.util.TimerTask.state:I
            iconst_3
            if_icmpne 7
         5: .line 462
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            iload 3 /* i */
            invokevirtual java.util.TaskQueue.quickRemove:(I)V
         6: .line 463
            iinc 1 /* result */ 1
         7: .line 460
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            ifgt 4
        end local 3 // int i
         9: .line 467
            iload 1 /* result */
            ifeq 11
        10: .line 468
            aload 0 /* this */
            getfield java.util.Timer.queue:Ljava/util/TaskQueue;
            invokevirtual java.util.TaskQueue.heapify:()V
        11: .line 459
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        12: goto 15
      StackMap locals:
      StackMap stack: java.lang.Throwable
        13: aload 2
            monitorexit
        14: athrow
        15: .line 471
      StackMap locals:
      StackMap stack:
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // java.util.Timer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Ljava/util/Timer;
            1   16     1  result  I
            3    9     3       i  I
      Exception table:
        from    to  target  type
           2    12      13  any
          13    14      13  any
}
SourceFile: "Timer.java"
NestMembers:
  java.util.Timer$1
InnerClasses:
  java.util.Timer$1