public class org.eclipse.jetty.util.PathWatcher extends org.eclipse.jetty.util.component.AbstractLifeCycle implements java.lang.Runnable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.PathWatcher
  super_class: org.eclipse.jetty.util.component.AbstractLifeCycle
{
  private static final boolean IS_WINDOWS;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final org.eclipse.jetty.util.log.Logger LOG;
    descriptor: Lorg/eclipse/jetty/util/log/Logger;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private static final java.nio.file.WatchEvent$Kind<?>[] WATCH_EVENT_KINDS;
    descriptor: [Ljava/nio/file/WatchEvent$Kind;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: [Ljava/nio/file/WatchEvent$Kind<*>;

  private static final java.nio.file.WatchEvent$Kind<?>[] WATCH_DIR_KINDS;
    descriptor: [Ljava/nio/file/WatchEvent$Kind;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: [Ljava/nio/file/WatchEvent$Kind<*>;

  private java.nio.file.WatchService watchService;
    descriptor: Ljava/nio/file/WatchService;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.file.WatchEvent$Modifier[] watchModifiers;
    descriptor: [Ljava/nio/file/WatchEvent$Modifier;
    flags: (0x0002) ACC_PRIVATE

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

  private final java.util.List<org.eclipse.jetty.util.PathWatcher$Config> configs;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/eclipse/jetty/util/PathWatcher$Config;>;

  private final java.util.Map<java.nio.file.WatchKey, org.eclipse.jetty.util.PathWatcher$Config> keys;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/nio/file/WatchKey;Lorg/eclipse/jetty/util/PathWatcher$Config;>;

  private final java.util.List<java.util.EventListener> listeners;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Ljava/util/EventListener;>;

  private final java.util.Map<java.nio.file.Path, org.eclipse.jetty.util.PathWatcher$PathWatchEvent> pending;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;>;

  private final java.util.List<org.eclipse.jetty.util.PathWatcher$PathWatchEvent> events;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;>;

  private long updateQuietTimeDuration;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.TimeUnit updateQuietTimeUnit;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.Thread thread;
    descriptor: Ljava/lang/Thread;
    flags: (0x0002) ACC_PRIVATE

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

  private static volatile int[] $SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$DirAction;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  private static volatile int[] $SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$PathWatchEventType;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 715
            ldc "os.name"
            invokestatic java.lang.System.getProperty:(Ljava/lang/String;)Ljava/lang/String;
            astore 0 /* os */
        start local 0 // java.lang.String os
         1: .line 716
            aload 0 /* os */
            ifnonnull 4
         2: .line 718
            iconst_0
            putstatic org.eclipse.jetty.util.PathWatcher.IS_WINDOWS:Z
         3: .line 719
            goto 6
         4: .line 722
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* os */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toLowerCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 1 /* osl */
        start local 1 // java.lang.String osl
         5: .line 723
            aload 1 /* osl */
            ldc "windows"
            invokevirtual java.lang.String.contains:(Ljava/lang/CharSequence;)Z
            putstatic org.eclipse.jetty.util.PathWatcher.IS_WINDOWS:Z
        end local 1 // java.lang.String osl
        end local 0 // java.lang.String os
         6: .line 727
      StackMap locals:
      StackMap stack:
            ldc Lorg/eclipse/jetty/util/PathWatcher;
            invokestatic org.eclipse.jetty.util.log.Log.getLogger:(Ljava/lang/Class;)Lorg/eclipse/jetty/util/log/Logger;
            putstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
         7: .line 735
            iconst_3
            anewarray java.nio.file.WatchEvent$Kind
            dup
            iconst_0
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_CREATE:Ljava/nio/file/WatchEvent$Kind;
            aastore
            dup
            iconst_1
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_DELETE:Ljava/nio/file/WatchEvent$Kind;
            aastore
            dup
            iconst_2
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_MODIFY:Ljava/nio/file/WatchEvent$Kind;
            aastore
            putstatic org.eclipse.jetty.util.PathWatcher.WATCH_EVENT_KINDS:[Ljava/nio/file/WatchEvent$Kind;
         8: .line 736
            iconst_2
            anewarray java.nio.file.WatchEvent$Kind
            dup
            iconst_0
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_CREATE:Ljava/nio/file/WatchEvent$Kind;
            aastore
            dup
            iconst_1
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_DELETE:Ljava/nio/file/WatchEvent$Kind;
            aastore
            putstatic org.eclipse.jetty.util.PathWatcher.WATCH_DIR_KINDS:[Ljava/nio/file/WatchEvent$Kind;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    6     0    os  Ljava/lang/String;
            5    6     1   osl  Ljava/lang/String;

  protected static <T> java.nio.file.WatchEvent<T> cast(java.nio.file.WatchEvent<?>);
    descriptor: (Ljava/nio/file/WatchEvent;)Ljava/nio/file/WatchEvent;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.WatchEvent event
         0: .line 732
            aload 0 /* event */
            areturn
        end local 0 // java.nio.file.WatchEvent event
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  event  Ljava/nio/file/WatchEvent<*>;
    Signature: <T:Ljava/lang/Object;>(Ljava/nio/file/WatchEvent<*>;)Ljava/nio/file/WatchEvent<TT;>;
    MethodParameters:
       Name  Flags
      event  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 760
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.<init>:()V
         1: .line 742
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.util.PathWatcher.configs:Ljava/util/List;
         2: .line 743
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
         3: .line 744
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
         4: .line 746
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            bipush 32
            ldc 0.75
            iconst_0
            invokespecial java.util.LinkedHashMap.<init>:(IFZ)V
            putfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
         5: .line 747
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
         6: .line 752
            aload 0 /* this */
            ldc 1000
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
         7: .line 753
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
         8: .line 755
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jetty.util.PathWatcher._notifyExistingOnStart:Z
         9: .line 762
            return
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/eclipse/jetty/util/PathWatcher;

  public java.util.Collection<org.eclipse.jetty.util.PathWatcher$Config> getConfigs();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 766
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.configs:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/PathWatcher;
    Signature: ()Ljava/util/Collection<Lorg/eclipse/jetty/util/PathWatcher$Config;>;

  public void watch(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.Path file
         0: .line 781
            aload 1 /* file */
            astore 2 /* abs */
        start local 2 // java.nio.file.Path abs
         1: .line 782
            aload 2 /* abs */
            invokeinterface java.nio.file.Path.isAbsolute:()Z
            ifne 3
         2: .line 784
            aload 1 /* file */
            invokeinterface java.nio.file.Path.toAbsolutePath:()Ljava/nio/file/Path;
            astore 2 /* abs */
         3: .line 789
      StackMap locals: java.nio.file.Path
      StackMap stack:
            aconst_null
            astore 3 /* config */
        start local 3 // org.eclipse.jetty.util.PathWatcher$Config config
         4: .line 790
            aload 2 /* abs */
            invokeinterface java.nio.file.Path.getParent:()Ljava/nio/file/Path;
            astore 4 /* parent */
        start local 4 // java.nio.file.Path parent
         5: .line 791
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.configs:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 10
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.Path java.nio.file.Path org.eclipse.jetty.util.PathWatcher$Config java.nio.file.Path top java.util.Iterator
      StackMap stack:
         6: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$Config
            astore 5 /* c */
        start local 5 // org.eclipse.jetty.util.PathWatcher$Config c
         7: .line 793
            aload 5 /* c */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.getPath:()Ljava/nio/file/Path;
            aload 4 /* parent */
            invokeinterface java.nio.file.Path.equals:(Ljava/lang/Object;)Z
            ifeq 10
         8: .line 795
            aload 5 /* c */
            astore 3 /* config */
         9: .line 796
            goto 11
        end local 5 // org.eclipse.jetty.util.PathWatcher$Config c
        10: .line 791
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        11: .line 801
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.Path java.nio.file.Path org.eclipse.jetty.util.PathWatcher$Config java.nio.file.Path
      StackMap stack:
            aload 3 /* config */
            ifnonnull 17
        12: .line 803
            new org.eclipse.jetty.util.PathWatcher$Config
            dup
            aload 2 /* abs */
            invokeinterface java.nio.file.Path.getParent:()Ljava/nio/file/Path;
            invokespecial org.eclipse.jetty.util.PathWatcher$Config.<init>:(Ljava/nio/file/Path;)V
            astore 3 /* config */
        13: .line 805
            aload 3 /* config */
            ldc ""
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.addIncludeGlobRelative:(Ljava/lang/String;)V
        14: .line 807
            aload 3 /* config */
            aload 1 /* file */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.addIncludeGlobRelative:(Ljava/lang/String;)V
        15: .line 808
            aload 0 /* this */
            aload 3 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher.watch:(Lorg/eclipse/jetty/util/PathWatcher$Config;)V
        16: .line 809
            goto 18
        17: .line 812
      StackMap locals:
      StackMap stack:
            aload 3 /* config */
            aload 1 /* file */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.addIncludeGlobRelative:(Ljava/lang/String;)V
        18: .line 813
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.nio.file.Path parent
        end local 3 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 2 // java.nio.file.Path abs
        end local 1 // java.nio.file.Path file
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0   19     1    file  Ljava/nio/file/Path;
            1   19     2     abs  Ljava/nio/file/Path;
            4   19     3  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
            5   19     4  parent  Ljava/nio/file/Path;
            7   10     5       c  Lorg/eclipse/jetty/util/PathWatcher$Config;
    MethodParameters:
      Name  Flags
      file  final

  public void watch(org.eclipse.jetty.util.PathWatcher$Config);
    descriptor: (Lorg/eclipse/jetty/util/PathWatcher$Config;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // org.eclipse.jetty.util.PathWatcher$Config config
         0: .line 824
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.configs:Ljava/util/List;
            aload 1 /* config */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 825
            return
        end local 1 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0    2     1  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
    MethodParameters:
        Name  Flags
      config  final

  public void addListener(java.util.EventListener);
    descriptor: (Ljava/util/EventListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.util.EventListener listener
         0: .line 834
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            aload 1 /* listener */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 835
            return
        end local 1 // java.util.EventListener listener
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/jetty/util/PathWatcher;
            0    2     1  listener  Ljava/util/EventListener;
    MethodParameters:
          Name  Flags
      listener  

  private void appendConfigId(java.lang.StringBuilder);
    descriptor: (Ljava/lang/StringBuilder;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.lang.StringBuilder s
         0: .line 842
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* dirs */
        start local 2 // java.util.List dirs
         1: .line 844
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.lang.StringBuilder java.util.List top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$Config
            astore 3 /* config */
        start local 3 // org.eclipse.jetty.util.PathWatcher$Config config
         3: .line 846
            aload 2 /* dirs */
            aload 3 /* config */
            getfield org.eclipse.jetty.util.PathWatcher$Config.path:Ljava/nio/file/Path;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // org.eclipse.jetty.util.PathWatcher$Config config
         4: .line 844
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 849
            aload 2 /* dirs */
            invokestatic java.util.Collections.sort:(Ljava/util/List;)V
         6: .line 851
            aload 1 /* s */
            ldc "["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 852
            aload 2 /* dirs */
            invokeinterface java.util.List.size:()I
            ifle 12
         8: .line 854
            aload 1 /* s */
            aload 2 /* dirs */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
         9: .line 855
            aload 2 /* dirs */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 13
        10: .line 857
            aload 1 /* s */
            ldc " (+"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 2 /* dirs */
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        11: .line 859
            goto 13
        12: .line 862
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.lang.StringBuilder java.util.List
      StackMap stack:
            aload 1 /* s */
            ldc "<null>"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        13: .line 864
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        14: .line 865
            return
        end local 2 // java.util.List dirs
        end local 1 // java.lang.StringBuilder s
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0   15     1       s  Ljava/lang/StringBuilder;
            1   15     2    dirs  Ljava/util/List<Ljava/nio/file/Path;>;
            3    4     3  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
    MethodParameters:
      Name  Flags
      s     

  protected void doStart();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 874
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.createWatchService:()V
         1: .line 877
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.getUpdateQuietTimeMillis:()J
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual org.eclipse.jetty.util.PathWatcher.setUpdateQuietTime:(JLjava/util/concurrent/TimeUnit;)V
         2: .line 881
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.configs:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 5
      StackMap locals: org.eclipse.jetty.util.PathWatcher top java.util.Iterator
      StackMap stack:
         3: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$Config
            astore 1 /* c */
        start local 1 // org.eclipse.jetty.util.PathWatcher$Config c
         4: .line 883
            aload 0 /* this */
            aload 1 /* c */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.getPath:()Ljava/nio/file/Path;
            aload 1 /* c */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isNotifyExistingOnStart:()Z
            invokevirtual org.eclipse.jetty.util.PathWatcher.registerTree:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;Z)V
        end local 1 // org.eclipse.jetty.util.PathWatcher$Config c
         5: .line 881
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 887
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* threadId */
        start local 1 // java.lang.StringBuilder threadId
         7: .line 888
            aload 1 /* threadId */
            ldc "PathWatcher@"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 889
            aload 1 /* threadId */
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 890
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 11
        10: .line 891
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "{} -> {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            aastore
            dup
            iconst_1
            aload 1 /* threadId */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        11: .line 893
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.lang.StringBuilder
      StackMap stack:
            aload 0 /* this */
            new java.lang.Thread
            dup
            aload 0 /* this */
            aload 1 /* threadId */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;Ljava/lang/String;)V
            putfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
        12: .line 894
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
            iconst_1
            invokevirtual java.lang.Thread.setDaemon:(Z)V
        13: .line 895
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.start:()V
        14: .line 896
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.doStart:()V
        15: .line 897
            return
        end local 1 // java.lang.StringBuilder threadId
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lorg/eclipse/jetty/util/PathWatcher;
            4    5     1         c  Lorg/eclipse/jetty/util/PathWatcher$Config;
            7   16     1  threadId  Ljava/lang/StringBuilder;
    Exceptions:
      throws java.lang.Exception

  protected void doStop();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 905
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            ifnull 2
         1: .line 906
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            invokeinterface java.nio.file.WatchService.close:()V
         2: .line 907
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
         3: .line 908
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
         4: .line 909
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         5: .line 910
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         6: .line 911
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         7: .line 912
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.doStop:()V
         8: .line 913
            return
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/jetty/util/PathWatcher;
    Exceptions:
      throws java.lang.Exception

  public void reset();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 920
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isStopped:()Z
            ifne 2
         1: .line 921
            new java.lang.IllegalStateException
            dup
            ldc "PathWatcher must be stopped before reset."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 923
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.configs:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         3: .line 924
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         4: .line 925
            return
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/jetty/util/PathWatcher;

  private void createWatchService();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 934
            aload 0 /* this */
            invokestatic java.nio.file.FileSystems.getDefault:()Ljava/nio/file/FileSystem;
            invokevirtual java.nio.file.FileSystem.newWatchService:()Ljava/nio/file/WatchService;
            putfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
         1: .line 936
            aconst_null
            astore 1 /* modifiers */
        start local 1 // java.nio.file.WatchEvent$Modifier[] modifiers
         2: .line 937
            iconst_1
            istore 2 /* nativeService */
        start local 2 // boolean nativeService
         3: .line 942
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            invokevirtual java.lang.Thread.getContextClassLoader:()Ljava/lang/ClassLoader;
            astore 3 /* cl */
        start local 3 // java.lang.ClassLoader cl
         4: .line 943
            ldc "sun.nio.fs.PollingWatchService"
            iconst_0
            aload 3 /* cl */
            invokestatic java.lang.Class.forName:(Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;
            astore 4 /* pollingWatchServiceClass */
        start local 4 // java.lang.Class pollingWatchServiceClass
         5: .line 944
            aload 4 /* pollingWatchServiceClass */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.isAssignableFrom:(Ljava/lang/Class;)Z
            ifeq 14
         6: .line 946
            iconst_0
            istore 2 /* nativeService */
         7: .line 947
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Using Non-Native Java {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* pollingWatchServiceClass */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.info:(Ljava/lang/String;[Ljava/lang/Object;)V
         8: .line 948
            ldc "com.sun.nio.file.SensitivityWatchEventModifier"
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            astore 5 /* c */
        start local 5 // java.lang.Class c
         9: .line 949
            aload 5 /* c */
            ldc "HIGH"
            invokevirtual java.lang.Class.getField:(Ljava/lang/String;)Ljava/lang/reflect/Field;
            astore 6 /* f */
        start local 6 // java.lang.reflect.Field f
        10: .line 950
            iconst_1
            anewarray java.nio.file.WatchEvent$Modifier
            dup
            iconst_0
            aload 6 /* f */
            aload 5 /* c */
            invokevirtual java.lang.reflect.Field.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.nio.file.WatchEvent$Modifier
            aastore
            astore 1 /* modifiers */
        end local 6 // java.lang.reflect.Field f
        end local 5 // java.lang.Class c
        end local 4 // java.lang.Class pollingWatchServiceClass
        end local 3 // java.lang.ClassLoader cl
        11: .line 952
            goto 14
        12: .line 953
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.WatchEvent$Modifier[] int
      StackMap stack: java.lang.Throwable
            astore 3 /* t */
        start local 3 // java.lang.Throwable t
        13: .line 956
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 3 /* t */
            invokeinterface org.eclipse.jetty.util.log.Logger.ignore:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable t
        14: .line 959
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* modifiers */
            putfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
        15: .line 960
            aload 0 /* this */
            iload 2 /* nativeService */
            putfield org.eclipse.jetty.util.PathWatcher.nativeWatchService:Z
        16: .line 961
            return
        end local 2 // boolean nativeService
        end local 1 // java.nio.file.WatchEvent$Modifier[] modifiers
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   17     0                      this  Lorg/eclipse/jetty/util/PathWatcher;
            2   17     1                 modifiers  [Ljava/nio/file/WatchEvent$Modifier;
            3   17     2             nativeService  Z
            4   11     3                        cl  Ljava/lang/ClassLoader;
            5   11     4  pollingWatchServiceClass  Ljava/lang/Class<*>;
            9   11     5                         c  Ljava/lang/Class<*>;
           10   11     6                         f  Ljava/lang/reflect/Field;
           13   14     3                         t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3    11      12  Class java.lang.Throwable
    Exceptions:
      throws java.io.IOException

  protected boolean isNotifiable();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 972
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isStarted:()Z
            ifne 2
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isStarted:()Z
            ifne 1
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isNotifyExistingOnStart:()Z
            ifne 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_1
            ireturn
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/PathWatcher;

  public java.util.Iterator<java.util.EventListener> getListeners();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 982
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            areturn
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/PathWatcher;
    Signature: ()Ljava/util/Iterator<Ljava/util/EventListener;>;

  public long getUpdateQuietTimeMillis();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 992
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            lreturn
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/PathWatcher;

  private void registerTree(java.nio.file.Path, org.eclipse.jetty.util.PathWatcher$Config, boolean);
    descriptor: (Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.Path dir
        start local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        start local 3 // boolean notify
         0: .line 997
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 998
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "registerTree {} {} {}"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* dir */
            aastore
            dup
            iconst_1
            aload 2 /* config */
            aastore
            dup
            iconst_2
            iload 3 /* notify */
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 1000
      StackMap locals:
      StackMap stack:
            aload 1 /* dir */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.isDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifne 4
         3: .line 1001
            new java.lang.IllegalArgumentException
            dup
            aload 1 /* dir */
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1003
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* dir */
            aload 2 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher.register:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
         5: .line 1005
            new org.eclipse.jetty.util.MultiException
            dup
            invokespecial org.eclipse.jetty.util.MultiException.<init>:()V
            astore 4 /* me */
        start local 4 // org.eclipse.jetty.util.MultiException me
         6: .line 1006
            aconst_null
            astore 5
            aconst_null
            astore 6
         7: aload 1 /* dir */
            invokestatic java.nio.file.Files.list:(Ljava/nio/file/Path;)Ljava/util/stream/Stream;
            astore 7 /* stream */
        start local 7 // java.util.stream.Stream stream
         8: .line 1008
            aload 7 /* stream */
            aload 0 /* this */
            iload 3 /* notify */
            aload 2 /* config */
            aload 4 /* me */
            invokedynamic accept(Lorg/eclipse/jetty/util/PathWatcher;ZLorg/eclipse/jetty/util/PathWatcher$Config;Lorg/eclipse/jetty/util/MultiException;)Ljava/util/function/Consumer;
              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;)V
                  org/eclipse/jetty/util/PathWatcher.lambda$0(ZLorg/eclipse/jetty/util/PathWatcher$Config;Lorg/eclipse/jetty/util/MultiException;Ljava/nio/file/Path;)V (7)
                  (Ljava/nio/file/Path;)V
            invokeinterface java.util.stream.Stream.forEach:(Ljava/util/function/Consumer;)V
         9: .line 1036
            aload 7 /* stream */
            ifnull 15
            aload 7 /* stream */
            invokeinterface java.util.stream.Stream.close:()V
            goto 15
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.Path org.eclipse.jetty.util.PathWatcher$Config int org.eclipse.jetty.util.MultiException java.lang.Throwable java.lang.Throwable java.util.stream.Stream
      StackMap stack: java.lang.Throwable
        10: astore 5
            aload 7 /* stream */
            ifnull 11
            aload 7 /* stream */
            invokeinterface java.util.stream.Stream.close:()V
        end local 7 // java.util.stream.Stream stream
      StackMap locals:
      StackMap stack:
        11: aload 5
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: astore 6
            aload 5
            ifnonnull 13
            aload 6
            astore 5
            goto 14
      StackMap locals:
      StackMap stack:
        13: aload 5
            aload 6
            if_acmpeq 14
            aload 5
            aload 6
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        14: aload 5
            athrow
        15: .line 1039
      StackMap locals:
      StackMap stack:
            aload 4 /* me */
            invokevirtual org.eclipse.jetty.util.MultiException.ifExceptionThrow:()V
        16: .line 1040
            goto 21
        17: .line 1041
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        18: .line 1043
            aload 5 /* e */
            athrow
        end local 5 // java.io.IOException e
        19: .line 1045
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5 /* th */
        start local 5 // java.lang.Throwable th
        20: .line 1047
            new java.io.IOException
            dup
            aload 5 /* th */
            invokespecial java.io.IOException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 5 // java.lang.Throwable th
        21: .line 1049
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.eclipse.jetty.util.MultiException me
        end local 3 // boolean notify
        end local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 1 // java.nio.file.Path dir
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0   22     1     dir  Ljava/nio/file/Path;
            0   22     2  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
            0   22     3  notify  Z
            6   22     4      me  Lorg/eclipse/jetty/util/MultiException;
            8   11     7  stream  Ljava/util/stream/Stream<Ljava/nio/file/Path;>;
           18   19     5       e  Ljava/io/IOException;
           20   21     5      th  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           8     9      10  any
           7    12      12  any
          15    16      17  Class java.io.IOException
          15    16      19  Class java.lang.Throwable
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      dir     
      config  
      notify  

  private void registerDir(java.nio.file.Path, org.eclipse.jetty.util.PathWatcher$Config);
    descriptor: (Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.Path path
        start local 2 // org.eclipse.jetty.util.PathWatcher$Config config
         0: .line 1053
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1054
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "registerDir {} {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* path */
            aastore
            dup
            iconst_1
            aload 2 /* config */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 1056
      StackMap locals:
      StackMap stack:
            aload 1 /* path */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.isDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifne 4
         3: .line 1057
            new java.lang.IllegalArgumentException
            dup
            aload 1 /* path */
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1059
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* path */
            aload 2 /* config */
            aload 1 /* path */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.asSubConfig:(Ljava/nio/file/Path;)Lorg/eclipse/jetty/util/PathWatcher$Config;
            getstatic org.eclipse.jetty.util.PathWatcher.WATCH_DIR_KINDS:[Ljava/nio/file/WatchEvent$Kind;
            invokevirtual org.eclipse.jetty.util.PathWatcher.register:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;[Ljava/nio/file/WatchEvent$Kind;)V
         5: .line 1060
            return
        end local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 1 // java.nio.file.Path path
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0    6     1    path  Ljava/nio/file/Path;
            0    6     2  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      path    
      config  

  protected void register(java.nio.file.Path, org.eclipse.jetty.util.PathWatcher$Config);
    descriptor: (Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.Path path
        start local 2 // org.eclipse.jetty.util.PathWatcher$Config config
         0: .line 1064
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 4
         1: .line 1065
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Registering watch on {} {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* path */
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
            ifnonnull 2
            aconst_null
            goto 3
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.Path org.eclipse.jetty.util.PathWatcher$Config
      StackMap stack: org.eclipse.jetty.util.log.Logger java.lang.String java.lang.Object[] java.lang.Object[] int
         2: aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.Path org.eclipse.jetty.util.PathWatcher$Config
      StackMap stack: org.eclipse.jetty.util.log.Logger java.lang.String java.lang.Object[] java.lang.Object[] int java.util.List
         3: aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 1067
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* path */
            aload 2 /* config */
            getstatic org.eclipse.jetty.util.PathWatcher.WATCH_EVENT_KINDS:[Ljava/nio/file/WatchEvent$Kind;
            invokevirtual org.eclipse.jetty.util.PathWatcher.register:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;[Ljava/nio/file/WatchEvent$Kind;)V
         5: .line 1068
            return
        end local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 1 // java.nio.file.Path path
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0    6     1    path  Ljava/nio/file/Path;
            0    6     2  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      path    
      config  

  private void register(java.nio.file.Path, org.eclipse.jetty.util.PathWatcher$Config, java.nio.file.WatchEvent$Kind<?>[]);
    descriptor: (Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;[Ljava/nio/file/WatchEvent$Kind;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.Path path
        start local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        start local 3 // java.nio.file.WatchEvent$Kind[] kinds
         0: .line 1072
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
            ifnull 4
         1: .line 1075
            aload 1 /* path */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            aload 3 /* kinds */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
            invokeinterface java.nio.file.Path.register:(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey;
            astore 4 /* key */
        start local 4 // java.nio.file.WatchKey key
         2: .line 1076
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            aload 4 /* key */
            aload 2 /* config */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 4 // java.nio.file.WatchKey key
         3: .line 1077
            goto 6
         4: .line 1081
      StackMap locals:
      StackMap stack:
            aload 1 /* path */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            aload 3 /* kinds */
            invokeinterface java.nio.file.Path.register:(Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;)Ljava/nio/file/WatchKey;
            astore 4 /* key */
        start local 4 // java.nio.file.WatchKey key
         5: .line 1082
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            aload 4 /* key */
            aload 2 /* config */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 4 // java.nio.file.WatchKey key
         6: .line 1084
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.nio.file.WatchEvent$Kind[] kinds
        end local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 1 // java.nio.file.Path path
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0    7     1    path  Ljava/nio/file/Path;
            0    7     2  config  Lorg/eclipse/jetty/util/PathWatcher$Config;
            0    7     3   kinds  [Ljava/nio/file/WatchEvent$Kind;
            2    3     4     key  Ljava/nio/file/WatchKey;
            5    6     4     key  Ljava/nio/file/WatchKey;
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;[Ljava/nio/file/WatchEvent$Kind<*>;)V
    MethodParameters:
        Name  Flags
      path    
      config  
      kinds   

  public boolean removeListener(org.eclipse.jetty.util.PathWatcher$Listener);
    descriptor: (Lorg/eclipse/jetty/util/PathWatcher$Listener;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // org.eclipse.jetty.util.PathWatcher$Listener listener
         0: .line 1094
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            aload 1 /* listener */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // org.eclipse.jetty.util.PathWatcher$Listener listener
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/jetty/util/PathWatcher;
            0    1     1  listener  Lorg/eclipse/jetty/util/PathWatcher$Listener;
    MethodParameters:
          Name  Flags
      listener  

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=11, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1118
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1120
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Starting java.nio file watching with {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 1123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.getUpdateQuietTimeMillis:()J
            lstore 1 /* waitTime */
        start local 1 // long waitTime
         3: .line 1125
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            astore 3 /* watch */
        start local 3 // java.nio.file.WatchService watch
         4: .line 1127
            goto 35
         5: .line 1135
      StackMap locals: long java.nio.file.WatchService
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokestatic java.lang.System.nanoTime:()J
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 5 /* now */
        start local 5 // long now
         6: .line 1136
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 8
            goto 14
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService top long top java.util.Iterator
      StackMap stack:
         7: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 7 /* e */
        start local 7 // java.util.Map$Entry e
         8: .line 1138
            aload 7 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.nio.file.WatchKey
            astore 9 /* k */
        start local 9 // java.nio.file.WatchKey k
         9: .line 1139
            aload 7 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$Config
            astore 10 /* c */
        start local 10 // org.eclipse.jetty.util.PathWatcher$Config c
        10: .line 1141
            aload 10 /* c */
            lload 5 /* now */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.isPaused:(J)Z
            ifne 14
            aload 9 /* k */
            invokeinterface java.nio.file.WatchKey.reset:()Z
            ifne 14
        11: .line 1143
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            aload 9 /* k */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        12: .line 1144
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            invokeinterface java.util.Map.isEmpty:()Z
            ifeq 14
        13: .line 1146
            return
        end local 10 // org.eclipse.jetty.util.PathWatcher$Config c
        end local 9 // java.nio.file.WatchKey k
        end local 7 // java.util.Map$Entry e
        14: .line 1136
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        15: .line 1151
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 17
        16: .line 1152
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Waiting for poll({})"
            lload 1 /* waitTime */
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;J)V
        17: .line 1153
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService top long
      StackMap stack:
            lload 1 /* waitTime */
            lconst_0
            lcmp
            ifge 18
            aload 3 /* watch */
            invokeinterface java.nio.file.WatchService.take:()Ljava/nio/file/WatchKey;
            goto 20
      StackMap locals:
      StackMap stack:
        18: lload 1 /* waitTime */
            lconst_0
            lcmp
            ifle 19
            aload 3 /* watch */
            lload 1 /* waitTime */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
            invokeinterface java.nio.file.WatchService.poll:(JLjava/util/concurrent/TimeUnit;)Ljava/nio/file/WatchKey;
            goto 20
      StackMap locals:
      StackMap stack:
        19: aload 3 /* watch */
            invokeinterface java.nio.file.WatchService.poll:()Ljava/nio/file/WatchKey;
      StackMap locals:
      StackMap stack: java.nio.file.WatchKey
        20: astore 4 /* key */
        start local 4 // java.nio.file.WatchKey key
        21: .line 1156
            goto 24
        22: .line 1158
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService java.nio.file.WatchKey long
      StackMap stack:
            aload 0 /* this */
            aload 4 /* key */
            invokevirtual org.eclipse.jetty.util.PathWatcher.handleKey:(Ljava/nio/file/WatchKey;)V
        23: .line 1159
            aload 3 /* watch */
            invokeinterface java.nio.file.WatchService.poll:()Ljava/nio/file/WatchKey;
            astore 4 /* key */
        24: .line 1156
      StackMap locals:
      StackMap stack:
            aload 4 /* key */
            ifnonnull 22
        25: .line 1162
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.processPending:()J
            lstore 1 /* waitTime */
        26: .line 1164
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.notifyEvents:()V
        end local 5 // long now
        27: .line 1165
            goto 35
        end local 4 // java.nio.file.WatchKey key
        28: .line 1166
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService
      StackMap stack: java.nio.file.ClosedWatchServiceException
            pop
        29: .line 1169
            return
        30: .line 1171
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 5 /* e */
        start local 5 // java.lang.InterruptedException e
        31: .line 1173
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isRunning:()Z
            ifeq 34
        32: .line 1175
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 5 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/Throwable;)V
        33: .line 1176
            goto 35
        34: .line 1179
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService top java.lang.InterruptedException
      StackMap stack:
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 5 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.ignore:(Ljava/lang/Throwable;)V
        end local 5 // java.lang.InterruptedException e
        35: .line 1127
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isRunning:()Z
            ifeq 36
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            if_acmpeq 5
        36: .line 1183
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.nio.file.WatchService watch
        end local 1 // long waitTime
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   37     0      this  Lorg/eclipse/jetty/util/PathWatcher;
            3   37     1  waitTime  J
            4   37     3     watch  Ljava/nio/file/WatchService;
           21   28     4       key  Ljava/nio/file/WatchKey;
            6   27     5       now  J
            8   14     7         e  Ljava/util/Map$Entry<Ljava/nio/file/WatchKey;Lorg/eclipse/jetty/util/PathWatcher$Config;>;
            9   14     9         k  Ljava/nio/file/WatchKey;
           10   14    10         c  Lorg/eclipse/jetty/util/PathWatcher$Config;
           31   35     5         e  Ljava/lang/InterruptedException;
      Exception table:
        from    to  target  type
           5    13      28  Class java.nio.file.ClosedWatchServiceException
          14    27      28  Class java.nio.file.ClosedWatchServiceException
           5    13      30  Class java.lang.InterruptedException
          14    27      30  Class java.lang.InterruptedException

  private void handleKey(java.nio.file.WatchKey);
    descriptor: (Ljava/nio/file/WatchKey;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=10, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.WatchKey key
         0: .line 1187
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$Config
            astore 2 /* config */
        start local 2 // org.eclipse.jetty.util.PathWatcher$Config config
         1: .line 1188
            aload 2 /* config */
            ifnonnull 5
         2: .line 1190
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 4
         3: .line 1191
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "WatchKey not recognized: {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* key */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         4: .line 1192
      StackMap locals: org.eclipse.jetty.util.PathWatcher$Config
      StackMap stack:
            return
         5: .line 1195
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokeinterface java.nio.file.WatchKey.pollEvents:()Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 30
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.WatchKey org.eclipse.jetty.util.PathWatcher$Config top java.util.Iterator
      StackMap stack:
         6: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.file.WatchEvent
            astore 3 /* event */
        start local 3 // java.nio.file.WatchEvent event
         7: .line 1197
            aload 3 /* event */
            invokestatic org.eclipse.jetty.util.PathWatcher.cast:(Ljava/nio/file/WatchEvent;)Ljava/nio/file/WatchEvent;
            astore 5 /* ev */
        start local 5 // java.nio.file.WatchEvent ev
         8: .line 1198
            aload 5 /* ev */
            invokeinterface java.nio.file.WatchEvent.context:()Ljava/lang/Object;
            checkcast java.nio.file.Path
            astore 6 /* name */
        start local 6 // java.nio.file.Path name
         9: .line 1199
            aload 2 /* config */
            aload 6 /* name */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.resolve:(Ljava/nio/file/Path;)Ljava/nio/file/Path;
            astore 7 /* path */
        start local 7 // java.nio.file.Path path
        10: .line 1201
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 12
        11: .line 1202
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "handleKey? {} {} {}"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* ev */
            invokeinterface java.nio.file.WatchEvent.kind:()Ljava/nio/file/WatchEvent$Kind;
            aastore
            dup
            iconst_1
            aload 2 /* config */
            aload 7 /* path */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.toShortPath:(Ljava/nio/file/Path;)Ljava/lang/String;
            aastore
            dup
            iconst_2
            aload 2 /* config */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        12: .line 1205
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.WatchKey org.eclipse.jetty.util.PathWatcher$Config java.nio.file.WatchEvent java.util.Iterator java.nio.file.WatchEvent java.nio.file.Path java.nio.file.Path
      StackMap stack:
            aload 5 /* ev */
            invokeinterface java.nio.file.WatchEvent.kind:()Ljava/nio/file/WatchEvent$Kind;
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_MODIFY:Ljava/nio/file/WatchEvent$Kind;
            if_acmpne 14
            aload 7 /* path */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifeq 14
            aload 7 /* path */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.isDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifeq 14
        13: .line 1206
            goto 30
        14: .line 1208
      StackMap locals:
      StackMap stack:
            aload 2 /* config */
            aload 7 /* path */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.test:(Ljava/nio/file/Path;)Z
            ifeq 16
        15: .line 1209
            aload 0 /* this */
            aload 7 /* path */
            new org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            dup
            aload 0 /* this */
            aload 7 /* path */
            aload 5 /* ev */
            aload 2 /* config */
            invokespecial org.eclipse.jetty.util.PathWatcher$PathWatchEvent.<init>:(Lorg/eclipse/jetty/util/PathWatcher;Ljava/nio/file/Path;Ljava/nio/file/WatchEvent;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
            invokevirtual org.eclipse.jetty.util.PathWatcher.handleWatchEvent:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;)V
            goto 21
        16: .line 1210
      StackMap locals:
      StackMap stack:
            aload 2 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.getRecurseDepth:()I
            iconst_m1
            if_icmpne 21
        17: .line 1213
            aload 7 /* path */
            invokeinterface java.nio.file.Path.getParent:()Ljava/nio/file/Path;
            astore 8 /* parent */
        start local 8 // java.nio.file.Path parent
        18: .line 1214
            aload 2 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.getParent:()Lorg/eclipse/jetty/util/PathWatcher$Config;
            astore 9 /* parentConfig */
        start local 9 // org.eclipse.jetty.util.PathWatcher$Config parentConfig
        19: .line 1215
            aload 0 /* this */
            aload 8 /* parent */
            new org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            dup
            aload 0 /* this */
            aload 8 /* parent */
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.MODIFIED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            aload 9 /* parentConfig */
            invokespecial org.eclipse.jetty.util.PathWatcher$PathWatchEvent.<init>:(Lorg/eclipse/jetty/util/PathWatcher;Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
            invokevirtual org.eclipse.jetty.util.PathWatcher.handleWatchEvent:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;)V
        20: .line 1216
            goto 30
        end local 9 // org.eclipse.jetty.util.PathWatcher$Config parentConfig
        end local 8 // java.nio.file.Path parent
        21: .line 1219
      StackMap locals:
      StackMap stack:
            aload 5 /* ev */
            invokeinterface java.nio.file.WatchEvent.kind:()Ljava/nio/file/WatchEvent$Kind;
            getstatic java.nio.file.StandardWatchEventKinds.ENTRY_CREATE:Ljava/nio/file/WatchEvent$Kind;
            if_acmpne 30
        22: .line 1223
            invokestatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$DirAction:()[I
            aload 2 /* config */
            aload 7 /* path */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.handleDir:(Ljava/nio/file/Path;)Lorg/eclipse/jetty/util/PathWatcher$DirAction;
            invokevirtual org.eclipse.jetty.util.PathWatcher$DirAction.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 27
                    2: 25
                    3: 23
              default: 27
          }
        23: .line 1226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 7 /* path */
            aload 2 /* config */
            aload 7 /* path */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.asSubConfig:(Ljava/nio/file/Path;)Lorg/eclipse/jetty/util/PathWatcher$Config;
            iconst_1
            invokevirtual org.eclipse.jetty.util.PathWatcher.registerTree:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;Z)V
        24: .line 1227
            goto 30
        25: .line 1229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 7 /* path */
            aload 2 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher.registerDir:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
        26: .line 1230
            goto 30
        27: .line 1235
      StackMap locals:
      StackMap stack:
            goto 30
        28: .line 1236
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 8 /* e */
        start local 8 // java.io.IOException e
        29: .line 1238
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 8 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/Throwable;)V
        end local 8 // java.io.IOException e
        end local 7 // java.nio.file.Path path
        end local 6 // java.nio.file.Path name
        end local 5 // java.nio.file.WatchEvent ev
        end local 3 // java.nio.file.WatchEvent event
        30: .line 1195
      StackMap locals: org.eclipse.jetty.util.PathWatcher java.nio.file.WatchKey org.eclipse.jetty.util.PathWatcher$Config top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        31: .line 1242
            return
        end local 2 // org.eclipse.jetty.util.PathWatcher$Config config
        end local 1 // java.nio.file.WatchKey key
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   32     0          this  Lorg/eclipse/jetty/util/PathWatcher;
            0   32     1           key  Ljava/nio/file/WatchKey;
            1   32     2        config  Lorg/eclipse/jetty/util/PathWatcher$Config;
            7   30     3         event  Ljava/nio/file/WatchEvent<*>;
            8   30     5            ev  Ljava/nio/file/WatchEvent<Ljava/nio/file/Path;>;
            9   30     6          name  Ljava/nio/file/Path;
           10   30     7          path  Ljava/nio/file/Path;
           18   21     8        parent  Ljava/nio/file/Path;
           19   21     9  parentConfig  Lorg/eclipse/jetty/util/PathWatcher$Config;
           29   30     8             e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
          22    27      28  Class java.io.IOException
    MethodParameters:
      Name  Flags
      key   

  public void handleWatchEvent(java.nio.file.Path, org.eclipse.jetty.util.PathWatcher$PathWatchEvent);
    descriptor: (Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // java.nio.file.Path path
        start local 2 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent event
         0: .line 1253
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 1 /* path */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            astore 3 /* existing */
        start local 3 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent existing
         1: .line 1255
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 3
         2: .line 1256
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "handleWatchEvent {} {} <= {}"
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* path */
            aastore
            dup
            iconst_1
            aload 2 /* event */
            aastore
            dup
            iconst_2
            aload 3 /* existing */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         3: .line 1258
      StackMap locals: org.eclipse.jetty.util.PathWatcher$PathWatchEvent
      StackMap stack:
            invokestatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$PathWatchEventType:()[I
            aload 2 /* event */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.getType:()Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ordinal:()I
            iaload
            tableswitch { // 1 - 4
                    1: 4
                    2: 12
                    3: 8
                    4: 12
              default: 16
          }
         4: .line 1261
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            ifnull 6
            aload 3 /* existing */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.getType:()Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.MODIFIED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            if_acmpne 6
         5: .line 1262
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            new org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            dup
            aload 0 /* this */
            aload 1 /* path */
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.DELETED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            aload 3 /* existing */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.getConfig:()Lorg/eclipse/jetty/util/PathWatcher$Config;
            invokespecial org.eclipse.jetty.util.PathWatcher$PathWatchEvent.<init>:(Lorg/eclipse/jetty/util/PathWatcher;Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         6: .line 1263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 1 /* path */
            aload 2 /* event */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         7: .line 1264
            goto 17
         8: .line 1267
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            ifnonnull 10
         9: .line 1268
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 1 /* path */
            aload 2 /* event */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
            goto 17
        10: .line 1270
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.modified:()V
        11: .line 1271
            goto 17
        12: .line 1275
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            ifnull 14
        13: .line 1276
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 1 /* path */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        14: .line 1277
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            aload 2 /* event */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        15: .line 1278
            goto 17
        16: .line 1281
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            aload 2 /* event */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        17: .line 1283
      StackMap locals:
      StackMap stack:
            return
        end local 3 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent existing
        end local 2 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent event
        end local 1 // java.nio.file.Path path
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lorg/eclipse/jetty/util/PathWatcher;
            0   18     1      path  Ljava/nio/file/Path;
            0   18     2     event  Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;
            1   18     3  existing  Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;
    MethodParameters:
       Name  Flags
      path   
      event  

  private long processPending();
    descriptor: ()J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=10, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1287
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1288
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "processPending> {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 1290
      StackMap locals:
      StackMap stack:
            getstatic java.util.concurrent.TimeUnit.NANOSECONDS:Ljava/util/concurrent/TimeUnit;
            invokestatic java.lang.System.nanoTime:()J
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 1 /* now */
        start local 1 // long now
         3: .line 1291
            ldc 9223372036854775807
            lstore 3 /* wait */
        start local 3 // long wait
         4: .line 1294
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            invokevirtual java.util.ArrayList.iterator:()Ljava/util/Iterator;
            astore 6
            goto 20
      StackMap locals: org.eclipse.jetty.util.PathWatcher long long top java.util.Iterator
      StackMap stack:
         5: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            astore 5 /* event */
        start local 5 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent event
         6: .line 1296
            aload 5 /* event */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.getPath:()Ljava/nio/file/Path;
            astore 7 /* path */
        start local 7 // java.nio.file.Path path
         7: .line 1298
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 7 /* path */
            invokeinterface java.nio.file.Path.getParent:()Ljava/nio/file/Path;
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 1299
            goto 20
         9: .line 1302
      StackMap locals: org.eclipse.jetty.util.PathWatcher long long org.eclipse.jetty.util.PathWatcher$PathWatchEvent java.util.Iterator java.nio.file.Path
      StackMap stack:
            aload 5 /* event */
            lload 1 /* now */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.getUpdateQuietTimeMillis:()J
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.isQuiet:(JJ)Z
            ifeq 15
        10: .line 1304
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 12
        11: .line 1305
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "isQuiet {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* event */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        12: .line 1306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 7 /* path */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
        13: .line 1307
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            aload 5 /* event */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        14: .line 1308
            goto 20
        15: .line 1311
      StackMap locals:
      StackMap stack:
            aload 5 /* event */
            lload 1 /* now */
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.getUpdateQuietTimeMillis:()J
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.toQuietCheck:(JJ)J
            lstore 8 /* msToCheck */
        start local 8 // long msToCheck
        16: .line 1312
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 18
        17: .line 1313
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "pending {} {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* event */
            aastore
            dup
            iconst_1
            lload 8 /* msToCheck */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        18: .line 1314
      StackMap locals: long
      StackMap stack:
            lload 8 /* msToCheck */
            lload 3 /* wait */
            lcmp
            ifge 20
        19: .line 1315
            lload 8 /* msToCheck */
            lstore 3 /* wait */
        end local 8 // long msToCheck
        end local 7 // java.nio.file.Path path
        end local 5 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent event
        20: .line 1294
      StackMap locals: org.eclipse.jetty.util.PathWatcher long long top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        21: .line 1318
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 23
        22: .line 1319
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "processPending< {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        23: .line 1320
      StackMap locals: org.eclipse.jetty.util.PathWatcher long long
      StackMap stack:
            lload 3 /* wait */
            ldc 9223372036854775807
            lcmp
            ifne 24
            ldc -1
            goto 25
      StackMap locals:
      StackMap stack:
        24: lload 3 /* wait */
      StackMap locals:
      StackMap stack: long
        25: lreturn
        end local 3 // long wait
        end local 1 // long now
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lorg/eclipse/jetty/util/PathWatcher;
            3   26     1        now  J
            4   26     3       wait  J
            6   20     5      event  Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;
            7   20     7       path  Ljava/nio/file/Path;
           16   20     8  msToCheck  J

  private void notifyEvents();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1325
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1326
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "notifyEvents {}"
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            i2l
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;J)V
         2: .line 1328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 4
         3: .line 1329
            return
         4: .line 1331
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* eventListeners */
        start local 1 // boolean eventListeners
         5: .line 1332
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 16
      StackMap locals: org.eclipse.jetty.util.PathWatcher int top java.util.Iterator
      StackMap stack:
         6: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.EventListener
            astore 2 /* listener */
        start local 2 // java.util.EventListener listener
         7: .line 1334
            aload 2 /* listener */
            instanceof org.eclipse.jetty.util.PathWatcher$EventListListener
            ifeq 15
         8: .line 1338
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 10
         9: .line 1339
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "notifyEvents {} {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* listener */
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        10: .line 1340
      StackMap locals: org.eclipse.jetty.util.PathWatcher int java.util.EventListener java.util.Iterator
      StackMap stack:
            aload 2 /* listener */
            checkcast org.eclipse.jetty.util.PathWatcher$EventListListener
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface org.eclipse.jetty.util.PathWatcher$EventListListener.onPathWatchEvents:(Ljava/util/List;)V
        11: .line 1341
            goto 16
        12: .line 1342
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4 /* t */
        start local 4 // java.lang.Throwable t
        13: .line 1344
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 4 /* t */
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
        14: .line 1346
            goto 16
        15: .line 1348
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* eventListeners */
        end local 2 // java.util.EventListener listener
        16: .line 1332
      StackMap locals: org.eclipse.jetty.util.PathWatcher int top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        17: .line 1351
            iload 1 /* eventListeners */
            ifeq 31
        18: .line 1353
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 30
      StackMap locals:
      StackMap stack:
        19: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            astore 2 /* event */
        start local 2 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent event
        20: .line 1355
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 22
        21: .line 1356
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "notifyEvent {} {}"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* event */
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        22: .line 1357
      StackMap locals: org.eclipse.jetty.util.PathWatcher int org.eclipse.jetty.util.PathWatcher$PathWatchEvent java.util.Iterator
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 29
      StackMap locals: org.eclipse.jetty.util.PathWatcher int org.eclipse.jetty.util.PathWatcher$PathWatchEvent java.util.Iterator top java.util.Iterator
      StackMap stack:
        23: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.EventListener
            astore 4 /* listener */
        start local 4 // java.util.EventListener listener
        24: .line 1359
            aload 4 /* listener */
            instanceof org.eclipse.jetty.util.PathWatcher$Listener
            ifeq 29
        25: .line 1363
            aload 4 /* listener */
            checkcast org.eclipse.jetty.util.PathWatcher$Listener
            aload 2 /* event */
            invokeinterface org.eclipse.jetty.util.PathWatcher$Listener.onPathWatchEvent:(Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;)V
        26: .line 1364
            goto 29
        27: .line 1365
      StackMap locals: org.eclipse.jetty.util.PathWatcher int org.eclipse.jetty.util.PathWatcher$PathWatchEvent java.util.Iterator java.util.EventListener java.util.Iterator
      StackMap stack: java.lang.Throwable
            astore 6 /* t */
        start local 6 // java.lang.Throwable t
        28: .line 1367
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 6 /* t */
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/Throwable;)V
        end local 6 // java.lang.Throwable t
        end local 4 // java.util.EventListener listener
        29: .line 1357
      StackMap locals: org.eclipse.jetty.util.PathWatcher int org.eclipse.jetty.util.PathWatcher$PathWatchEvent java.util.Iterator top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 23
        end local 2 // org.eclipse.jetty.util.PathWatcher$PathWatchEvent event
        30: .line 1353
      StackMap locals: org.eclipse.jetty.util.PathWatcher int top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 19
        31: .line 1374
      StackMap locals: org.eclipse.jetty.util.PathWatcher int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
        32: .line 1375
            return
        end local 1 // boolean eventListeners
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   33     0            this  Lorg/eclipse/jetty/util/PathWatcher;
            5   33     1  eventListeners  Z
            7   16     2        listener  Ljava/util/EventListener;
           13   14     4               t  Ljava/lang/Throwable;
           20   30     2           event  Lorg/eclipse/jetty/util/PathWatcher$PathWatchEvent;
           24   29     4        listener  Ljava/util/EventListener;
           28   29     6               t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           8    11      12  Class java.lang.Throwable
          25    26      27  Class java.lang.Throwable

  public void setNotifyExistingOnStart(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // boolean notify
         0: .line 1385
            aload 0 /* this */
            iload 1 /* notify */
            putfield org.eclipse.jetty.util.PathWatcher._notifyExistingOnStart:Z
         1: .line 1386
            return
        end local 1 // boolean notify
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jetty/util/PathWatcher;
            0    2     1  notify  Z
    MethodParameters:
        Name  Flags
      notify  

  public boolean isNotifyExistingOnStart();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1390
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher._notifyExistingOnStart:Z
            ireturn
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/PathWatcher;

  public void setUpdateQuietTime(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=3
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 1 // long duration
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 1401
            aload 3 /* unit */
            lload 1 /* duration */
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 4 /* desiredMillis */
        start local 4 // long desiredMillis
         1: .line 1403
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            ifnull 6
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.nativeWatchService:Z
            ifne 6
            lload 4 /* desiredMillis */
            ldc 5000
            lcmp
            ifge 6
         2: .line 1405
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Quiet Time is too low for non-native WatchService [{}]: {} < 5000 ms (defaulting to 5000 ms)"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            lload 4 /* desiredMillis */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/String;[Ljava/lang/Object;)V
         3: .line 1406
            aload 0 /* this */
            ldc 5000
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
         4: .line 1407
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
         5: .line 1408
            return
         6: .line 1411
      StackMap locals: long
      StackMap stack:
            getstatic org.eclipse.jetty.util.PathWatcher.IS_WINDOWS:Z
            ifeq 11
            lload 4 /* desiredMillis */
            ldc 1000
            lcmp
            ifge 11
         7: .line 1413
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Quiet Time is too low for Microsoft Windows: {} < 1000 ms (defaulting to 1000 ms)"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            lload 4 /* desiredMillis */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.warn:(Ljava/lang/String;[Ljava/lang/Object;)V
         8: .line 1414
            aload 0 /* this */
            ldc 1000
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
         9: .line 1415
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
        10: .line 1416
            return
        11: .line 1420
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* duration */
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
        12: .line 1421
            aload 0 /* this */
            aload 3 /* unit */
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
        13: .line 1422
            return
        end local 4 // long desiredMillis
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long duration
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lorg/eclipse/jetty/util/PathWatcher;
            0   14     1       duration  J
            0   14     3           unit  Ljava/util/concurrent/TimeUnit;
            1   14     4  desiredMillis  J
    MethodParameters:
          Name  Flags
      duration  
      unit      

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1427
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 1 /* s */
        start local 1 // java.lang.StringBuilder s
         1: .line 1428
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual org.eclipse.jetty.util.PathWatcher.appendConfigId:(Ljava/lang/StringBuilder;)V
         2: .line 1429
            aload 1 /* s */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder s
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/PathWatcher;
            1    3     1     s  Ljava/lang/StringBuilder;

  static int[] $SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$DirAction();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 68
            getstatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$DirAction:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.eclipse.jetty.util.PathWatcher$DirAction.values:()[Lorg/eclipse/jetty/util/PathWatcher$DirAction;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$DirAction.ENTER:Lorg/eclipse/jetty/util/PathWatcher$DirAction;
            invokevirtual org.eclipse.jetty.util.PathWatcher$DirAction.ordinal:()I
            iconst_3
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$DirAction.IGNORE:Lorg/eclipse/jetty/util/PathWatcher$DirAction;
            invokevirtual org.eclipse.jetty.util.PathWatcher$DirAction.ordinal:()I
            iconst_1
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$DirAction.WATCH:Lorg/eclipse/jetty/util/PathWatcher$DirAction;
            invokevirtual org.eclipse.jetty.util.PathWatcher$DirAction.ordinal:()I
            iconst_2
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            dup
            putstatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$DirAction:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError

  static int[] $SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$PathWatchEventType();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 68
            getstatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$PathWatchEventType:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.values:()[Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ADDED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ordinal:()I
            iconst_1
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.DELETED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ordinal:()I
            iconst_2
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.MODIFIED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ordinal:()I
            iconst_3
            iastore
         9: goto 11
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        10: pop
      StackMap locals:
      StackMap stack:
        11: aload 0
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.UNKNOWN:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ordinal:()I
            iconst_4
            iastore
        12: goto 14
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
        13: pop
      StackMap locals:
      StackMap stack:
        14: aload 0
            dup
            putstatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$PathWatchEventType:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
           8     9      10  Class java.lang.NoSuchFieldError
          11    12      13  Class java.lang.NoSuchFieldError

  private void lambda$0(boolean, org.eclipse.jetty.util.PathWatcher$Config, org.eclipse.jetty.util.MultiException, java.nio.file.Path);
    descriptor: (ZLorg/eclipse/jetty/util/PathWatcher$Config;Lorg/eclipse/jetty/util/MultiException;Ljava/nio/file/Path;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=8, locals=6, args_size=5
        start local 0 // org.eclipse.jetty.util.PathWatcher this
        start local 4 // java.nio.file.Path p
         0: .line 1010
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1011
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "registerTree? {}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 4 /* p */
            aastore
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 1015
      StackMap locals:
      StackMap stack:
            iload 1
            ifeq 4
            aload 2
            aload 4 /* p */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.test:(Ljava/nio/file/Path;)Z
            ifeq 4
         3: .line 1016
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            aload 4 /* p */
            new org.eclipse.jetty.util.PathWatcher$PathWatchEvent
            dup
            aload 0 /* this */
            aload 4 /* p */
            getstatic org.eclipse.jetty.util.PathWatcher$PathWatchEventType.ADDED:Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;
            aload 2
            invokespecial org.eclipse.jetty.util.PathWatcher$PathWatchEvent.<init>:(Lorg/eclipse/jetty/util/PathWatcher;Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$PathWatchEventType;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 1018
      StackMap locals:
      StackMap stack:
            invokestatic org.eclipse.jetty.util.PathWatcher.$SWITCH_TABLE$org$eclipse$jetty$util$PathWatcher$DirAction:()[I
            aload 2
            aload 4 /* p */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.handleDir:(Ljava/nio/file/Path;)Lorg/eclipse/jetty/util/PathWatcher$DirAction;
            invokevirtual org.eclipse.jetty.util.PathWatcher$DirAction.ordinal:()I
            iaload
            tableswitch { // 1 - 3
                    1: 9
                    2: 7
                    3: 5
              default: 9
          }
         5: .line 1021
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* p */
            aload 2
            aload 4 /* p */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.asSubConfig:(Ljava/nio/file/Path;)Lorg/eclipse/jetty/util/PathWatcher$Config;
            iload 1
            invokevirtual org.eclipse.jetty.util.PathWatcher.registerTree:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;Z)V
         6: .line 1022
            goto 12
         7: .line 1024
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 4 /* p */
            aload 2
            invokevirtual org.eclipse.jetty.util.PathWatcher.registerDir:(Ljava/nio/file/Path;Lorg/eclipse/jetty/util/PathWatcher$Config;)V
         8: .line 1025
            goto 12
         9: .line 1030
      StackMap locals:
      StackMap stack:
            goto 12
        10: .line 1031
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        11: .line 1033
            aload 3
            aload 5 /* e */
            invokevirtual org.eclipse.jetty.util.MultiException.add:(Ljava/lang/Throwable;)V
        end local 5 // java.io.IOException e
        12: .line 1035
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.nio.file.Path p
        end local 0 // org.eclipse.jetty.util.PathWatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lorg/eclipse/jetty/util/PathWatcher;
            0   13     4     p  Ljava/nio/file/Path;
           11   12     5     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     9      10  Class java.io.IOException
}
SourceFile: "PathWatcher.java"
NestMembers:
  org.eclipse.jetty.util.PathWatcher$Config  org.eclipse.jetty.util.PathWatcher$DirAction  org.eclipse.jetty.util.PathWatcher$EventListListener  org.eclipse.jetty.util.PathWatcher$ExactPathMatcher  org.eclipse.jetty.util.PathWatcher$Listener  org.eclipse.jetty.util.PathWatcher$PathMatcherSet  org.eclipse.jetty.util.PathWatcher$PathWatchEvent  org.eclipse.jetty.util.PathWatcher$PathWatchEventType
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Kind = java.nio.file.WatchEvent$Kind of java.nio.file.WatchEvent
  public abstract Modifier = java.nio.file.WatchEvent$Modifier of java.nio.file.WatchEvent
  public abstract Entry = java.util.Map$Entry of java.util.Map
  public Config = org.eclipse.jetty.util.PathWatcher$Config of org.eclipse.jetty.util.PathWatcher
  public final DirAction = org.eclipse.jetty.util.PathWatcher$DirAction of org.eclipse.jetty.util.PathWatcher
  public abstract EventListListener = org.eclipse.jetty.util.PathWatcher$EventListListener of org.eclipse.jetty.util.PathWatcher
  private ExactPathMatcher = org.eclipse.jetty.util.PathWatcher$ExactPathMatcher of org.eclipse.jetty.util.PathWatcher
  public abstract Listener = org.eclipse.jetty.util.PathWatcher$Listener of org.eclipse.jetty.util.PathWatcher
  public PathMatcherSet = org.eclipse.jetty.util.PathWatcher$PathMatcherSet of org.eclipse.jetty.util.PathWatcher
  public PathWatchEvent = org.eclipse.jetty.util.PathWatcher$PathWatchEvent of org.eclipse.jetty.util.PathWatcher
  public final PathWatchEventType = org.eclipse.jetty.util.PathWatcher$PathWatchEventType of org.eclipse.jetty.util.PathWatcher