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.slf4j.Logger LOG;
    descriptor: Lorg/slf4j/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 706
            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 707
            aload 0 /* os */
            ifnonnull 4
         2: .line 709
            iconst_0
            putstatic org.eclipse.jetty.util.PathWatcher.IS_WINDOWS:Z
         3: .line 710
            goto 6
         4: .line 713
      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 714
            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 718
      StackMap locals:
      StackMap stack:
            ldc Lorg/eclipse/jetty/util/PathWatcher;
            invokestatic org.slf4j.LoggerFactory.getLogger:(Ljava/lang/Class;)Lorg/slf4j/Logger;
            putstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
         7: .line 726
            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 727
            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 723
            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 751
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.<init>:()V
         1: .line 733
            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 734
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
         3: .line 735
            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 737
            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 738
            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 743
            aload 0 /* this */
            ldc 1000
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
         7: .line 744
            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 746
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jetty.util.PathWatcher._notifyExistingOnStart:Z
         9: .line 753
            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 757
            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 772
            aload 1 /* file */
            astore 2 /* abs */
        start local 2 // java.nio.file.Path abs
         1: .line 773
            aload 2 /* abs */
            invokeinterface java.nio.file.Path.isAbsolute:()Z
            ifne 3
         2: .line 775
            aload 1 /* file */
            invokeinterface java.nio.file.Path.toAbsolutePath:()Ljava/nio/file/Path;
            astore 2 /* abs */
         3: .line 780
      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 781
            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 782
            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 784
            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 786
            aload 5 /* c */
            astore 3 /* config */
         9: .line 787
            goto 11
        end local 5 // org.eclipse.jetty.util.PathWatcher$Config c
        10: .line 782
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        11: .line 792
      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 794
            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 796
            aload 3 /* config */
            ldc ""
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.addIncludeGlobRelative:(Ljava/lang/String;)V
        14: .line 798
            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 799
            aload 0 /* this */
            aload 3 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher.watch:(Lorg/eclipse/jetty/util/PathWatcher$Config;)V
        16: .line 800
            goto 18
        17: .line 803
      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 804
      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 815
            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 816
            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 825
            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 826
            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 833
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* dirs */
        start local 2 // java.util.List dirs
         1: .line 835
            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 837
            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 835
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 840
            aload 2 /* dirs */
            invokestatic java.util.Collections.sort:(Ljava/util/List;)V
         6: .line 842
            aload 1 /* s */
            ldc "["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 843
            aload 2 /* dirs */
            invokeinterface java.util.List.size:()I
            ifle 12
         8: .line 845
            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 846
            aload 2 /* dirs */
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 13
        10: .line 848
            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 850
            goto 13
        12: .line 853
      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 855
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        14: .line 856
            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=5, locals=3, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 862
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.createWatchService:()V
         1: .line 865
            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 869
            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 871
            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 869
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 875
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* threadId */
        start local 1 // java.lang.StringBuilder threadId
         7: .line 876
            aload 1 /* threadId */
            ldc "PathWatcher@"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 877
            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 878
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 11
        10: .line 879
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "{} -> {}"
            aload 0 /* this */
            aload 1 /* threadId */
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        11: .line 881
      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 882
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
            iconst_1
            invokevirtual java.lang.Thread.setDaemon:(Z)V
        13: .line 883
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
            invokevirtual java.lang.Thread.start:()V
        14: .line 884
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.doStart:()V
        15: .line 885
            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 890
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            ifnull 2
         1: .line 891
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            invokeinterface java.nio.file.WatchService.close:()V
         2: .line 892
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
         3: .line 893
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.PathWatcher.thread:Ljava/lang/Thread;
         4: .line 894
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         5: .line 895
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         6: .line 896
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         7: .line 897
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.component.AbstractLifeCycle.doStop:()V
         8: .line 898
            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 905
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isStopped:()Z
            ifne 2
         1: .line 906
            new java.lang.IllegalStateException
            dup
            ldc "PathWatcher must be stopped before reset."
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 908
      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 909
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         4: .line 910
            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=5, locals=7, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 919
            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 921
            aconst_null
            astore 1 /* modifiers */
        start local 1 // java.nio.file.WatchEvent$Modifier[] modifiers
         2: .line 922
            iconst_1
            istore 2 /* nativeService */
        start local 2 // boolean nativeService
         3: .line 927
            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 928
            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 929
            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 931
            iconst_0
            istore 2 /* nativeService */
         7: .line 932
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Using Non-Native Java {}"
            aload 4 /* pollingWatchServiceClass */
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokeinterface org.slf4j.Logger.info:(Ljava/lang/String;Ljava/lang/Object;)V
         8: .line 933
            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 934
            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 935
            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 937
            goto 14
        12: .line 938
      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 941
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "IGNORED"
            aload 3 /* t */
            invokeinterface org.slf4j.Logger.trace:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable t
        14: .line 944
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* modifiers */
            putfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
        15: .line 945
            aload 0 /* this */
            iload 2 /* nativeService */
            putfield org.eclipse.jetty.util.PathWatcher.nativeWatchService:Z
        16: .line 946
            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 957
            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 967
            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 977
            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 982
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 983
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/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.slf4j.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         2: .line 985
      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 986
            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 988
      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 990
            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 991
            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 993
            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 1021
            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 1024
      StackMap locals:
      StackMap stack:
            aload 4 /* me */
            invokevirtual org.eclipse.jetty.util.MultiException.ifExceptionThrow:()V
        16: .line 1025
            goto 21
        17: .line 1026
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        18: .line 1028
            aload 5 /* e */
            athrow
        end local 5 // java.io.IOException e
        19: .line 1030
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5 /* th */
        start local 5 // java.lang.Throwable th
        20: .line 1032
            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 1034
      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=4, 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 1038
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1039
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "registerDir {} {}"
            aload 1 /* path */
            aload 2 /* config */
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 1041
      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 1042
            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 1044
      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 1045
            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=4, 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 1049
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 4
         1: .line 1050
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Registering watch on {} {}"
            aload 1 /* path */
            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.slf4j.Logger java.lang.String java.nio.file.Path
         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.slf4j.Logger java.lang.String java.nio.file.Path java.util.List
         3: invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 1052
      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 1053
            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 1057
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchModifiers:[Ljava/nio/file/WatchEvent$Modifier;
            ifnull 4
         1: .line 1060
            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 1061
            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 1062
            goto 6
         4: .line 1066
      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 1067
            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 1069
      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 1079
            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=4, locals=11, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1103
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1105
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Starting java.nio file watching with {}"
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.watchService:Ljava/nio/file/WatchService;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
         2: .line 1108
      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 1110
            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 1112
            goto 35
         5: .line 1120
      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 1121
            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 1123
            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 1124
            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 1126
            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 1128
            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 1129
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.keys:Ljava/util/Map;
            invokeinterface java.util.Map.isEmpty:()Z
            ifeq 14
        13: .line 1131
            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 1121
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 7
        15: .line 1136
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 17
        16: .line 1137
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Waiting for poll({})"
            lload 1 /* waitTime */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
        17: .line 1138
      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 1141
            goto 24
        22: .line 1143
      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 1144
            aload 3 /* watch */
            invokeinterface java.nio.file.WatchService.poll:()Ljava/nio/file/WatchKey;
            astore 4 /* key */
        24: .line 1141
      StackMap locals:
      StackMap stack:
            aload 4 /* key */
            ifnonnull 22
        25: .line 1147
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.processPending:()J
            lstore 1 /* waitTime */
        26: .line 1149
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.notifyEvents:()V
        end local 5 // long now
        27: .line 1150
            goto 35
        end local 4 // java.nio.file.WatchKey key
        28: .line 1151
      StackMap locals: org.eclipse.jetty.util.PathWatcher long java.nio.file.WatchService
      StackMap stack: java.nio.file.ClosedWatchServiceException
            pop
        29: .line 1154
            return
        30: .line 1156
      StackMap locals:
      StackMap stack: java.lang.InterruptedException
            astore 5 /* e */
        start local 5 // java.lang.InterruptedException e
        31: .line 1158
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.PathWatcher.isRunning:()Z
            ifeq 34
        32: .line 1160
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Watch failed"
            aload 5 /* e */
            invokeinterface org.slf4j.Logger.warn:(Ljava/lang/String;Ljava/lang/Throwable;)V
        33: .line 1161
            goto 35
        34: .line 1164
      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/slf4j/Logger;
            ldc "IGNORED"
            aload 5 /* e */
            invokeinterface org.slf4j.Logger.trace:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 5 // java.lang.InterruptedException e
        35: .line 1112
      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 1168
      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 1172
            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 1173
            aload 2 /* config */
            ifnonnull 5
         2: .line 1175
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 4
         3: .line 1176
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "WatchKey not recognized: {}"
            aload 1 /* key */
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
         4: .line 1177
      StackMap locals: org.eclipse.jetty.util.PathWatcher$Config
      StackMap stack:
            return
         5: .line 1180
      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 1182
            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 1183
            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 1184
            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 1186
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 12
        11: .line 1187
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/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.slf4j.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        12: .line 1190
      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 1191
            goto 30
        14: .line 1193
      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 1194
            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 1195
      StackMap locals:
      StackMap stack:
            aload 2 /* config */
            invokevirtual org.eclipse.jetty.util.PathWatcher$Config.getRecurseDepth:()I
            iconst_m1
            if_icmpne 21
        17: .line 1198
            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 1199
            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 1200
            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 1201
            goto 30
        end local 9 // org.eclipse.jetty.util.PathWatcher$Config parentConfig
        end local 8 // java.nio.file.Path parent
        21: .line 1204
      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 1208
            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 1211
      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 1212
            goto 30
        25: .line 1214
      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 1215
            goto 30
        27: .line 1220
      StackMap locals:
      StackMap stack:
            goto 30
        28: .line 1221
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 8 /* e */
        start local 8 // java.io.IOException e
        29: .line 1223
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Unable to register"
            aload 8 /* e */
            invokeinterface org.slf4j.Logger.warn:(Ljava/lang/String;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 1180
      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 1227
            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 1238
            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 1240
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 3
         2: .line 1241
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/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.slf4j.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
         3: .line 1243
      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 1246
      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 1247
            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 1248
      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 1249
            goto 17
         8: .line 1252
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            ifnonnull 10
         9: .line 1253
            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 1255
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            invokevirtual org.eclipse.jetty.util.PathWatcher$PathWatchEvent.modified:()V
        11: .line 1256
            goto 17
        12: .line 1260
      StackMap locals:
      StackMap stack:
            aload 3 /* existing */
            ifnull 14
        13: .line 1261
            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 1262
      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 1263
            goto 17
        16: .line 1266
      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 1268
      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=5, locals=10, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1272
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1273
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "processPending> {}"
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
         2: .line 1275
      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 1276
            ldc 9223372036854775807
            lstore 3 /* wait */
        start local 3 // long wait
         4: .line 1279
            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 1281
            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 1283
            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 1284
            goto 20
         9: .line 1287
      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 1289
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 12
        11: .line 1290
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "isQuiet {}"
            aload 5 /* event */
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
        12: .line 1291
      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 1292
            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 1293
            goto 20
        15: .line 1296
      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 1297
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 18
        17: .line 1298
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "pending {} {}"
            aload 5 /* event */
            lload 8 /* msToCheck */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        18: .line 1299
      StackMap locals: long
      StackMap stack:
            lload 8 /* msToCheck */
            lload 3 /* wait */
            lcmp
            ifge 20
        19: .line 1300
            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 1279
      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 1303
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 23
        22: .line 1304
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "processPending< {}"
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.pending:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
        23: .line 1305
      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=4, locals=7, args_size=1
        start local 0 // org.eclipse.jetty.util.PathWatcher this
         0: .line 1310
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 1311
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "notifyEvents {}"
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
         2: .line 1313
      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 1314
            return
         4: .line 1316
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* eventListeners */
        start local 1 // boolean eventListeners
         5: .line 1317
            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 1319
            aload 2 /* listener */
            instanceof org.eclipse.jetty.util.PathWatcher$EventListListener
            ifeq 15
         8: .line 1323
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 10
         9: .line 1324
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "notifyEvents {} {}"
            aload 2 /* listener */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.events:Ljava/util/List;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        10: .line 1325
      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 1326
            goto 16
        12: .line 1327
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4 /* t */
        start local 4 // java.lang.Throwable t
        13: .line 1329
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Unable to notify PathWatch Events"
            aload 4 /* t */
            invokeinterface org.slf4j.Logger.warn:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 4 // java.lang.Throwable t
        14: .line 1331
            goto 16
        15: .line 1333
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 1 /* eventListeners */
        end local 2 // java.util.EventListener listener
        16: .line 1317
      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 1336
            iload 1 /* eventListeners */
            ifeq 31
        18: .line 1338
            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 1340
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 22
        21: .line 1341
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "notifyEvent {} {}"
            aload 2 /* event */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.PathWatcher.listeners:Ljava/util/List;
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
        22: .line 1342
      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 1344
            aload 4 /* listener */
            instanceof org.eclipse.jetty.util.PathWatcher$Listener
            ifeq 29
        25: .line 1348
            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 1349
            goto 29
        27: .line 1350
      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 1352
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Unable to notify PathWatch Events"
            aload 6 /* t */
            invokeinterface org.slf4j.Logger.warn:(Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 6 // java.lang.Throwable t
        end local 4 // java.util.EventListener listener
        29: .line 1342
      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 1338
      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 1359
      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 1360
            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 1370
            aload 0 /* this */
            iload 1 /* notify */
            putfield org.eclipse.jetty.util.PathWatcher._notifyExistingOnStart:Z
         1: .line 1371
            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 1375
            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=5, 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 1386
            aload 3 /* unit */
            lload 1 /* duration */
            invokevirtual java.util.concurrent.TimeUnit.toMillis:(J)J
            lstore 4 /* desiredMillis */
        start local 4 // long desiredMillis
         1: .line 1388
            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 1390
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Quiet Time is too low for non-native WatchService [{}]: {} < 5000 ms (defaulting to 5000 ms)"
            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;
            lload 4 /* desiredMillis */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface org.slf4j.Logger.warn:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 1391
            aload 0 /* this */
            ldc 5000
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
         4: .line 1392
            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 1393
            return
         6: .line 1396
      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 1398
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "Quiet Time is too low for Microsoft Windows: {} < 1000 ms (defaulting to 1000 ms)"
            lload 4 /* desiredMillis */
            invokestatic java.lang.Long.valueOf:(J)Ljava/lang/Long;
            invokeinterface org.slf4j.Logger.warn:(Ljava/lang/String;Ljava/lang/Object;)V
         8: .line 1399
            aload 0 /* this */
            ldc 1000
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
         9: .line 1400
            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 1401
            return
        11: .line 1405
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* duration */
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeDuration:J
        12: .line 1406
            aload 0 /* this */
            aload 3 /* unit */
            putfield org.eclipse.jetty.util.PathWatcher.updateQuietTimeUnit:Ljava/util/concurrent/TimeUnit;
        13: .line 1407
            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 1412
            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 1413
            aload 0 /* this */
            aload 1 /* s */
            invokevirtual org.eclipse.jetty.util.PathWatcher.appendConfigId:(Ljava/lang/StringBuilder;)V
         2: .line 1414
            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 995
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            invokeinterface org.slf4j.Logger.isDebugEnabled:()Z
            ifeq 2
         1: .line 996
            getstatic org.eclipse.jetty.util.PathWatcher.LOG:Lorg/slf4j/Logger;
            ldc "registerTree? {}"
            aload 4 /* p */
            invokeinterface org.slf4j.Logger.debug:(Ljava/lang/String;Ljava/lang/Object;)V
         2: .line 1000
      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 1001
            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 1003
      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 1006
      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 1007
            goto 12
         7: .line 1009
      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 1010
            goto 12
         9: .line 1015
      StackMap locals:
      StackMap stack:
            goto 12
        10: .line 1016
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 5 /* e */
        start local 5 // java.io.IOException e
        11: .line 1018
            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 1020
      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