public final class org.apache.lucene.util.IOUtils
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.util.IOUtils
  super_class: java.lang.Object
{
  public static final java.lang.String UTF_8;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            ldc Lorg/apache/lucene/util/IOUtils;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.util.IOUtils.$assertionsDisabled:Z
         3: .line 62
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.nio.charset.Charset.name:()Ljava/lang/String;
            putstatic org.apache.lucene.util.IOUtils.UTF_8:Ljava/lang/String;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.IOUtils this
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.lucene.util.IOUtils this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/IOUtils;

  public static void close(java.io.Closeable[]);
    descriptor: ([Ljava/io/Closeable;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.Closeable[] objects
         0: .line 77
            aload 0 /* objects */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.apache.lucene.util.IOUtils.close:(Ljava/lang/Iterable;)V
         1: .line 78
            return
        end local 0 // java.io.Closeable[] objects
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  objects  [Ljava/io/Closeable;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      objects  

  public static void close(java.lang.Iterable<? extends java.io.Closeable>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // java.lang.Iterable objects
         0: .line 85
            aconst_null
            astore 1 /* th */
        start local 1 // java.lang.Throwable th
         1: .line 86
            aload 0 /* objects */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: java.lang.Iterable java.lang.Throwable top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.io.Closeable
            astore 2 /* object */
        start local 2 // java.io.Closeable object
         3: .line 88
            aload 2 /* object */
            ifnull 8
         4: .line 89
            aload 2 /* object */
            invokeinterface java.io.Closeable.close:()V
         5: .line 91
            goto 8
      StackMap locals: java.lang.Iterable java.lang.Throwable java.io.Closeable java.util.Iterator
      StackMap stack: java.lang.Throwable
         6: astore 4 /* t */
        start local 4 // java.lang.Throwable t
         7: .line 92
            aload 1 /* th */
            aload 4 /* t */
            invokestatic org.apache.lucene.util.IOUtils.useOrSuppress:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 1 /* th */
        end local 4 // java.lang.Throwable t
        end local 2 // java.io.Closeable object
         8: .line 86
      StackMap locals: java.lang.Iterable java.lang.Throwable top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 96
            aload 1 /* th */
            ifnull 11
        10: .line 97
            aload 1 /* th */
            invokestatic org.apache.lucene.util.IOUtils.rethrowAlways:(Ljava/lang/Throwable;)Ljava/lang/Error;
            athrow
        11: .line 99
      StackMap locals: java.lang.Iterable java.lang.Throwable
      StackMap stack:
            return
        end local 1 // java.lang.Throwable th
        end local 0 // java.lang.Iterable objects
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0  objects  Ljava/lang/Iterable<+Ljava/io/Closeable;>;
            1   12     1       th  Ljava/lang/Throwable;
            3    8     2   object  Ljava/io/Closeable;
            7    8     4        t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.Throwable
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/lang/Iterable<+Ljava/io/Closeable;>;)V
    MethodParameters:
         Name  Flags
      objects  

  public static void closeWhileHandlingException(java.io.Closeable[]);
    descriptor: ([Ljava/io/Closeable;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.Closeable[] objects
         0: .line 109
            aload 0 /* objects */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.apache.lucene.util.IOUtils.closeWhileHandlingException:(Ljava/lang/Iterable;)V
         1: .line 110
            return
        end local 0 // java.io.Closeable[] objects
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  objects  [Ljava/io/Closeable;
    MethodParameters:
         Name  Flags
      objects  

  public static void closeWhileHandlingException(java.lang.Iterable<? extends java.io.Closeable>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // java.lang.Iterable objects
         0: .line 118
            aconst_null
            astore 1 /* firstError */
        start local 1 // java.lang.VirtualMachineError firstError
         1: .line 119
            aconst_null
            astore 2 /* firstThrowable */
        start local 2 // java.lang.Throwable firstThrowable
         2: .line 120
            aload 0 /* objects */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 12
      StackMap locals: java.lang.Iterable java.lang.VirtualMachineError java.lang.Throwable top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.io.Closeable
            astore 3 /* object */
        start local 3 // java.io.Closeable object
         4: .line 122
            aload 3 /* object */
            ifnull 12
         5: .line 123
            aload 3 /* object */
            invokeinterface java.io.Closeable.close:()V
         6: .line 125
            goto 12
      StackMap locals: java.lang.Iterable java.lang.VirtualMachineError java.lang.Throwable java.io.Closeable java.util.Iterator
      StackMap stack: java.lang.VirtualMachineError
         7: astore 5 /* e */
        start local 5 // java.lang.VirtualMachineError e
         8: .line 126
            aload 1 /* firstError */
            aload 5 /* e */
            invokestatic org.apache.lucene.util.IOUtils.useOrSuppress:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            checkcast java.lang.VirtualMachineError
            astore 1 /* firstError */
        end local 5 // java.lang.VirtualMachineError e
         9: goto 12
        10: .line 127
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5 /* t */
        start local 5 // java.lang.Throwable t
        11: .line 128
            aload 2 /* firstThrowable */
            aload 5 /* t */
            invokestatic org.apache.lucene.util.IOUtils.useOrSuppress:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 2 /* firstThrowable */
        end local 5 // java.lang.Throwable t
        end local 3 // java.io.Closeable object
        12: .line 120
      StackMap locals: java.lang.Iterable java.lang.VirtualMachineError java.lang.Throwable top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
        13: .line 131
            aload 1 /* firstError */
            ifnull 17
        14: .line 134
            aload 2 /* firstThrowable */
            ifnull 16
        15: .line 135
            aload 1 /* firstError */
            aload 2 /* firstThrowable */
            invokevirtual java.lang.VirtualMachineError.addSuppressed:(Ljava/lang/Throwable;)V
        16: .line 137
      StackMap locals: java.lang.Iterable java.lang.VirtualMachineError java.lang.Throwable
      StackMap stack:
            aload 1 /* firstError */
            athrow
        17: .line 139
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Throwable firstThrowable
        end local 1 // java.lang.VirtualMachineError firstError
        end local 0 // java.lang.Iterable objects
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   18     0         objects  Ljava/lang/Iterable<+Ljava/io/Closeable;>;
            1   18     1      firstError  Ljava/lang/VirtualMachineError;
            2   18     2  firstThrowable  Ljava/lang/Throwable;
            4   12     3          object  Ljava/io/Closeable;
            8    9     5               e  Ljava/lang/VirtualMachineError;
           11   12     5               t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           4     6       7  Class java.lang.VirtualMachineError
           4     6      10  Class java.lang.Throwable
    Signature: (Ljava/lang/Iterable<+Ljava/io/Closeable;>;)V
    MethodParameters:
         Name  Flags
      objects  

  public static java.io.Reader getDecodingReader(java.io.InputStream, java.nio.charset.Charset);
    descriptor: (Ljava/io/InputStream;Ljava/nio/charset/Charset;)Ljava/io/Reader;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // java.io.InputStream stream
        start local 1 // java.nio.charset.Charset charSet
         0: .line 155
            aload 1 /* charSet */
            invokevirtual java.nio.charset.Charset.newDecoder:()Ljava/nio/charset/CharsetDecoder;
         1: .line 156
            getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onMalformedInput:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
         2: .line 157
            getstatic java.nio.charset.CodingErrorAction.REPORT:Ljava/nio/charset/CodingErrorAction;
            invokevirtual java.nio.charset.CharsetDecoder.onUnmappableCharacter:(Ljava/nio/charset/CodingErrorAction;)Ljava/nio/charset/CharsetDecoder;
         3: .line 155
            astore 2 /* charSetDecoder */
        start local 2 // java.nio.charset.CharsetDecoder charSetDecoder
         4: .line 158
            new java.io.BufferedReader
            dup
            new java.io.InputStreamReader
            dup
            aload 0 /* stream */
            aload 2 /* charSetDecoder */
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/nio/charset/CharsetDecoder;)V
            invokespecial java.io.BufferedReader.<init>:(Ljava/io/Reader;)V
            areturn
        end local 2 // java.nio.charset.CharsetDecoder charSetDecoder
        end local 1 // java.nio.charset.Charset charSet
        end local 0 // java.io.InputStream stream
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    5     0          stream  Ljava/io/InputStream;
            0    5     1         charSet  Ljava/nio/charset/Charset;
            4    5     2  charSetDecoder  Ljava/nio/charset/CharsetDecoder;
    MethodParameters:
         Name  Flags
      stream   
      charSet  

  public static java.io.Reader getDecodingReader(java.lang.Class<?>, java.lang.String, java.nio.charset.Charset);
    descriptor: (Ljava/lang/Class;Ljava/lang/String;Ljava/nio/charset/Charset;)Ljava/io/Reader;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // java.lang.Class clazz
        start local 1 // java.lang.String resource
        start local 2 // java.nio.charset.Charset charSet
         0: .line 176
            aconst_null
            astore 3 /* stream */
        start local 3 // java.io.InputStream stream
         1: .line 177
            iconst_0
            istore 4 /* success */
        start local 4 // boolean success
         2: .line 179
            aload 0 /* clazz */
         3: .line 180
            aload 1 /* resource */
            invokevirtual java.lang.Class.getResourceAsStream:(Ljava/lang/String;)Ljava/io/InputStream;
         4: .line 179
            astore 3 /* stream */
         5: .line 181
            aload 3 /* stream */
            aload 2 /* charSet */
            invokestatic org.apache.lucene.util.IOUtils.getDecodingReader:(Ljava/io/InputStream;Ljava/nio/charset/Charset;)Ljava/io/Reader;
            astore 5 /* reader */
        start local 5 // java.io.Reader reader
         6: .line 182
            iconst_1
            istore 4 /* success */
         7: .line 183
            aload 5 /* reader */
            astore 7
         8: .line 185
            iload 4 /* success */
            ifne 10
            iconst_1
            anewarray java.io.Closeable
            dup
            iconst_0
         9: .line 186
            aload 3 /* stream */
            aastore
            invokestatic org.apache.lucene.util.IOUtils.close:([Ljava/io/Closeable;)V
        10: .line 183
      StackMap locals: java.lang.Class java.lang.String java.nio.charset.Charset java.io.InputStream int java.io.Reader top java.io.Reader
      StackMap stack:
            aload 7
            areturn
        end local 5 // java.io.Reader reader
        11: .line 184
      StackMap locals: java.lang.Class java.lang.String java.nio.charset.Charset java.io.InputStream int
      StackMap stack: java.lang.Throwable
            astore 6
        12: .line 185
            iload 4 /* success */
            ifne 14
            iconst_1
            anewarray java.io.Closeable
            dup
            iconst_0
        13: .line 186
            aload 3 /* stream */
            aastore
            invokestatic org.apache.lucene.util.IOUtils.close:([Ljava/io/Closeable;)V
        14: .line 188
      StackMap locals: java.lang.Class java.lang.String java.nio.charset.Charset java.io.InputStream int top java.lang.Throwable
      StackMap stack:
            aload 6
            athrow
        end local 4 // boolean success
        end local 3 // java.io.InputStream stream
        end local 2 // java.nio.charset.Charset charSet
        end local 1 // java.lang.String resource
        end local 0 // java.lang.Class clazz
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0     clazz  Ljava/lang/Class<*>;
            0   15     1  resource  Ljava/lang/String;
            0   15     2   charSet  Ljava/nio/charset/Charset;
            1   15     3    stream  Ljava/io/InputStream;
            2   15     4   success  Z
            6   11     5    reader  Ljava/io/Reader;
      Exception table:
        from    to  target  type
           2     8      11  any
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/lang/Class<*>;Ljava/lang/String;Ljava/nio/charset/Charset;)Ljava/io/Reader;
    MethodParameters:
          Name  Flags
      clazz     
      resource  
      charSet   

  public static void deleteFilesIgnoringExceptions(org.apache.lucene.store.Directory, java.util.Collection<java.lang.String>);
    descriptor: (Lorg/apache/lucene/store/Directory;Ljava/util/Collection;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.lucene.store.Directory dir
        start local 1 // java.util.Collection files
         0: .line 197
            aload 1 /* files */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* name */
        start local 2 // java.lang.String name
         2: .line 199
            aload 0 /* dir */
            aload 2 /* name */
            invokevirtual org.apache.lucene.store.Directory.deleteFile:(Ljava/lang/String;)V
         3: .line 200
            goto 5
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection java.lang.String java.util.Iterator
      StackMap stack: java.lang.Throwable
         4: pop
        end local 2 // java.lang.String name
         5: .line 197
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         6: .line 204
            return
        end local 1 // java.util.Collection files
        end local 0 // org.apache.lucene.store.Directory dir
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0    dir  Lorg/apache/lucene/store/Directory;
            0    7     1  files  Ljava/util/Collection<Ljava/lang/String;>;
            2    5     2   name  Ljava/lang/String;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
    Signature: (Lorg/apache/lucene/store/Directory;Ljava/util/Collection<Ljava/lang/String;>;)V
    MethodParameters:
       Name  Flags
      dir    
      files  

  public static void deleteFilesIgnoringExceptions(org.apache.lucene.store.Directory, java.lang.String[]);
    descriptor: (Lorg/apache/lucene/store/Directory;[Ljava/lang/String;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.store.Directory dir
        start local 1 // java.lang.String[] files
         0: .line 207
            aload 0 /* dir */
            aload 1 /* files */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.apache.lucene.util.IOUtils.deleteFilesIgnoringExceptions:(Lorg/apache/lucene/store/Directory;Ljava/util/Collection;)V
         1: .line 208
            return
        end local 1 // java.lang.String[] files
        end local 0 // org.apache.lucene.store.Directory dir
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0    dir  Lorg/apache/lucene/store/Directory;
            0    2     1  files  [Ljava/lang/String;
    MethodParameters:
       Name  Flags
      dir    
      files  

  public static void deleteFiles(org.apache.lucene.store.Directory, java.util.Collection<java.lang.String>);
    descriptor: (Lorg/apache/lucene/store/Directory;Ljava/util/Collection;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.apache.lucene.store.Directory dir
        start local 1 // java.util.Collection names
         0: .line 221
            aconst_null
            astore 2 /* th */
        start local 2 // java.lang.Throwable th
         1: .line 222
            aload 1 /* names */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 8
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection java.lang.Throwable top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* name */
        start local 3 // java.lang.String name
         3: .line 223
            aload 3 /* name */
            ifnull 8
         4: .line 225
            aload 0 /* dir */
            aload 3 /* name */
            invokevirtual org.apache.lucene.store.Directory.deleteFile:(Ljava/lang/String;)V
         5: .line 226
            goto 8
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection java.lang.Throwable java.lang.String java.util.Iterator
      StackMap stack: java.lang.Throwable
         6: astore 5 /* t */
        start local 5 // java.lang.Throwable t
         7: .line 227
            aload 2 /* th */
            aload 5 /* t */
            invokestatic org.apache.lucene.util.IOUtils.useOrSuppress:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 2 /* th */
        end local 5 // java.lang.Throwable t
        end local 3 // java.lang.String name
         8: .line 222
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection java.lang.Throwable top java.util.Iterator
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 232
            aload 2 /* th */
            ifnull 11
        10: .line 233
            aload 2 /* th */
            invokestatic org.apache.lucene.util.IOUtils.rethrowAlways:(Ljava/lang/Throwable;)Ljava/lang/Error;
            athrow
        11: .line 235
      StackMap locals: org.apache.lucene.store.Directory java.util.Collection java.lang.Throwable
      StackMap stack:
            return
        end local 2 // java.lang.Throwable th
        end local 1 // java.util.Collection names
        end local 0 // org.apache.lucene.store.Directory dir
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0    dir  Lorg/apache/lucene/store/Directory;
            0   12     1  names  Ljava/util/Collection<Ljava/lang/String;>;
            1   12     2     th  Ljava/lang/Throwable;
            3    8     3   name  Ljava/lang/String;
            7    8     5      t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           4     5       6  Class java.lang.Throwable
    Exceptions:
      throws java.io.IOException
    Signature: (Lorg/apache/lucene/store/Directory;Ljava/util/Collection<Ljava/lang/String;>;)V
    MethodParameters:
       Name  Flags
      dir    
      names  

  public static void deleteFilesIgnoringExceptions(java.nio.file.Path[]);
    descriptor: ([Ljava/nio/file/Path;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.Path[] files
         0: .line 243
            aload 0 /* files */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.apache.lucene.util.IOUtils.deleteFilesIgnoringExceptions:(Ljava/util/Collection;)V
         1: .line 244
            return
        end local 0 // java.nio.file.Path[] files
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  files  [Ljava/nio/file/Path;
    MethodParameters:
       Name  Flags
      files  

  public static void deleteFilesIgnoringExceptions(java.util.Collection<? extends java.nio.file.Path>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.util.Collection files
         0: .line 252
            aload 0 /* files */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2
            goto 6
      StackMap locals: java.util.Collection top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.file.Path
            astore 1 /* name */
        start local 1 // java.nio.file.Path name
         2: .line 253
            aload 1 /* name */
            ifnull 6
         3: .line 255
            aload 1 /* name */
            invokestatic java.nio.file.Files.delete:(Ljava/nio/file/Path;)V
         4: .line 256
            goto 6
      StackMap locals: java.util.Collection java.nio.file.Path java.util.Iterator
      StackMap stack: java.lang.Throwable
         5: pop
        end local 1 // java.nio.file.Path name
         6: .line 252
      StackMap locals: java.util.Collection top java.util.Iterator
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         7: .line 261
            return
        end local 0 // java.util.Collection files
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0  files  Ljava/util/Collection<+Ljava/nio/file/Path;>;
            2    6     1   name  Ljava/nio/file/Path;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Throwable
    Signature: (Ljava/util/Collection<+Ljava/nio/file/Path;>;)V
    MethodParameters:
       Name  Flags
      files  

  public static void deleteFilesIfExist(java.nio.file.Path[]);
    descriptor: ([Ljava/nio/file/Path;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.Path[] files
         0: .line 273
            aload 0 /* files */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokestatic org.apache.lucene.util.IOUtils.deleteFilesIfExist:(Ljava/util/Collection;)V
         1: .line 274
            return
        end local 0 // java.nio.file.Path[] files
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0  files  [Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      files  

  public static void deleteFilesIfExist(java.util.Collection<? extends java.nio.file.Path>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // java.util.Collection files
         0: .line 286
            aconst_null
            astore 1 /* th */
        start local 1 // java.lang.Throwable th
         1: .line 287
            aload 0 /* files */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: java.util.Collection java.lang.Throwable top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.file.Path
            astore 2 /* file */
        start local 2 // java.nio.file.Path file
         3: .line 289
            aload 2 /* file */
            ifnull 8
         4: .line 290
            aload 2 /* file */
            invokestatic java.nio.file.Files.deleteIfExists:(Ljava/nio/file/Path;)Z
            pop
         5: .line 292
            goto 8
      StackMap locals: java.util.Collection java.lang.Throwable java.nio.file.Path java.util.Iterator
      StackMap stack: java.lang.Throwable
         6: astore 4 /* t */
        start local 4 // java.lang.Throwable t
         7: .line 293
            aload 1 /* th */
            aload 4 /* t */
            invokestatic org.apache.lucene.util.IOUtils.useOrSuppress:(Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
            astore 1 /* th */
        end local 4 // java.lang.Throwable t
        end local 2 // java.nio.file.Path file
         8: .line 287
      StackMap locals: java.util.Collection java.lang.Throwable top java.util.Iterator
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         9: .line 297
            aload 1 /* th */
            ifnull 11
        10: .line 298
            aload 1 /* th */
            invokestatic org.apache.lucene.util.IOUtils.rethrowAlways:(Ljava/lang/Throwable;)Ljava/lang/Error;
            athrow
        11: .line 300
      StackMap locals: java.util.Collection java.lang.Throwable
      StackMap stack:
            return
        end local 1 // java.lang.Throwable th
        end local 0 // java.util.Collection files
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0  files  Ljava/util/Collection<+Ljava/nio/file/Path;>;
            1   12     1     th  Ljava/lang/Throwable;
            3    8     2   file  Ljava/nio/file/Path;
            7    8     4      t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     5       6  Class java.lang.Throwable
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/util/Collection<+Ljava/nio/file/Path;>;)V
    MethodParameters:
       Name  Flags
      files  

  public static void rm(java.nio.file.Path[]);
    descriptor: ([Ljava/nio/file/Path;)V
    flags: (0x0089) ACC_PUBLIC, ACC_STATIC, ACC_VARARGS
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // java.nio.file.Path[] locations
         0: .line 309
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            aload 0 /* locations */
            invokestatic org.apache.lucene.util.IOUtils.rm:(Ljava/util/LinkedHashMap;[Ljava/nio/file/Path;)Ljava/util/LinkedHashMap;
            astore 1 /* unremoved */
        start local 1 // java.util.LinkedHashMap unremoved
         1: .line 310
            aload 1 /* unremoved */
            invokevirtual java.util.LinkedHashMap.isEmpty:()Z
            ifne 12
         2: .line 311
            new java.lang.StringBuilder
            dup
            ldc "Could not remove the following files (in the order of attempts):\n"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            astore 2 /* b */
        start local 2 // java.lang.StringBuilder b
         3: .line 312
            aload 1 /* unremoved */
            invokevirtual java.util.LinkedHashMap.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 10
      StackMap locals: java.nio.file.Path[] java.util.LinkedHashMap java.lang.StringBuilder top java.util.Iterator
      StackMap stack:
         4: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* kv */
        start local 3 // java.util.Map$Entry kv
         5: .line 313
            aload 2 /* b */
            ldc "   "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 314
            aload 3 /* kv */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            checkcast java.nio.file.Path
            invokeinterface java.nio.file.Path.toAbsolutePath:()Ljava/nio/file/Path;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         7: .line 315
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         8: .line 316
            aload 3 /* kv */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         9: .line 317
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // java.util.Map$Entry kv
        10: .line 312
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        11: .line 319
            new java.io.IOException
            dup
            aload 2 /* b */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.lang.StringBuilder b
        12: .line 321
      StackMap locals: java.nio.file.Path[] java.util.LinkedHashMap
      StackMap stack:
            return
        end local 1 // java.util.LinkedHashMap unremoved
        end local 0 // java.nio.file.Path[] locations
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   13     0  locations  [Ljava/nio/file/Path;
            1   13     1  unremoved  Ljava/util/LinkedHashMap<Ljava/nio/file/Path;Ljava/lang/Throwable;>;
            3   12     2          b  Ljava/lang/StringBuilder;
            5   10     3         kv  Ljava/util/Map$Entry<Ljava/nio/file/Path;Ljava/lang/Throwable;>;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      locations  

  private static java.util.LinkedHashMap<java.nio.file.Path, java.lang.Throwable> rm(java.util.LinkedHashMap<java.nio.file.Path, java.lang.Throwable>, java.nio.file.Path[]);
    descriptor: (Ljava/util/LinkedHashMap;[Ljava/nio/file/Path;)Ljava/util/LinkedHashMap;
    flags: (0x008a) ACC_PRIVATE, ACC_STATIC, ACC_VARARGS
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // java.util.LinkedHashMap unremoved
        start local 1 // java.nio.file.Path[] locations
         0: .line 324
            aload 1 /* locations */
            ifnull 10
         1: .line 325
            aload 1 /* locations */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 9
      StackMap locals: java.util.LinkedHashMap java.nio.file.Path[] top int int java.nio.file.Path[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* location */
        start local 2 // java.nio.file.Path location
         3: .line 327
            aload 2 /* location */
            ifnull 8
            aload 2 /* location */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifeq 8
         4: .line 329
            aload 2 /* location */
            new org.apache.lucene.util.IOUtils$1
            dup
            aload 0 /* unremoved */
            invokespecial org.apache.lucene.util.IOUtils$1.<init>:(Ljava/util/LinkedHashMap;)V
            invokestatic java.nio.file.Files.walkFileTree:(Ljava/nio/file/Path;Ljava/nio/file/FileVisitor;)Ljava/nio/file/Path;
            pop
         5: .line 365
            goto 8
      StackMap locals: java.util.LinkedHashMap java.nio.file.Path[] java.nio.file.Path int int java.nio.file.Path[]
      StackMap stack: java.io.IOException
         6: astore 6 /* impossible */
        start local 6 // java.io.IOException impossible
         7: .line 366
            new java.lang.AssertionError
            dup
            ldc "visitor threw exception"
            aload 6 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 6 // java.io.IOException impossible
        end local 2 // java.nio.file.Path location
         8: .line 325
      StackMap locals: java.util.LinkedHashMap java.nio.file.Path[] top int int java.nio.file.Path[]
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         9: iload 3
            iload 4
            if_icmplt 2
        10: .line 371
      StackMap locals: java.util.LinkedHashMap java.nio.file.Path[]
      StackMap stack:
            aload 0 /* unremoved */
            areturn
        end local 1 // java.nio.file.Path[] locations
        end local 0 // java.util.LinkedHashMap unremoved
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0   unremoved  Ljava/util/LinkedHashMap<Ljava/nio/file/Path;Ljava/lang/Throwable;>;
            0   11     1   locations  [Ljava/nio/file/Path;
            3    8     2    location  Ljava/nio/file/Path;
            7    8     6  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           4     5       6  Class java.io.IOException
    Signature: (Ljava/util/LinkedHashMap<Ljava/nio/file/Path;Ljava/lang/Throwable;>;[Ljava/nio/file/Path;)Ljava/util/LinkedHashMap<Ljava/nio/file/Path;Ljava/lang/Throwable;>;
    MethodParameters:
           Name  Flags
      unremoved  final
      locations  

  public static java.lang.Error rethrowAlways(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)Ljava/lang/Error;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Throwable th
         0: .line 400
            aload 0 /* th */
            ifnonnull 2
         1: .line 401
            new java.lang.AssertionError
            dup
            ldc "rethrow argument must not be null."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* th */
            instanceof java.io.IOException
            ifeq 4
         3: .line 405
            aload 0 /* th */
            checkcast java.io.IOException
            athrow
         4: .line 408
      StackMap locals:
      StackMap stack:
            aload 0 /* th */
            instanceof java.lang.RuntimeException
            ifeq 6
         5: .line 409
            aload 0 /* th */
            checkcast java.lang.RuntimeException
            athrow
         6: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* th */
            instanceof java.lang.Error
            ifeq 8
         7: .line 413
            aload 0 /* th */
            checkcast java.lang.Error
            athrow
         8: .line 416
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            aload 0 /* th */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 0 // java.lang.Throwable th
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0    th  Ljava/lang/Throwable;
    Exceptions:
      throws java.io.IOException, java.lang.RuntimeException
    MethodParameters:
      Name  Flags
      th    

  public static void reThrow(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Throwable th
         0: .line 429
            aload 0 /* th */
            ifnull 2
         1: .line 430
            aload 0 /* th */
            invokestatic org.apache.lucene.util.IOUtils.rethrowAlways:(Ljava/lang/Throwable;)Ljava/lang/Error;
            athrow
         2: .line 432
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.Throwable th
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0    th  Ljava/lang/Throwable;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      th    

  public static void reThrowUnchecked(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.lang.Throwable th
         0: .line 441
            aload 0 /* th */
            ifnull 6
         1: .line 442
            aload 0 /* th */
            instanceof java.lang.Error
            ifeq 3
         2: .line 443
            aload 0 /* th */
            checkcast java.lang.Error
            athrow
         3: .line 445
      StackMap locals:
      StackMap stack:
            aload 0 /* th */
            instanceof java.lang.RuntimeException
            ifeq 5
         4: .line 446
            aload 0 /* th */
            checkcast java.lang.RuntimeException
            athrow
         5: .line 448
      StackMap locals:
      StackMap stack:
            new java.lang.RuntimeException
            dup
            aload 0 /* th */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
         6: .line 450
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.lang.Throwable th
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0    th  Ljava/lang/Throwable;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
      Name  Flags
      th    

  public static void fsync(java.nio.file.Path, boolean);
    descriptor: (Ljava/nio/file/Path;Z)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // java.nio.file.Path fileToSync
        start local 1 // boolean isDir
         0: .line 461
            iload 1 /* isDir */
            ifeq 4
            getstatic org.apache.lucene.util.Constants.WINDOWS:Z
            ifeq 4
         1: .line 463
            aload 0 /* fileToSync */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifne 3
         2: .line 465
            new java.nio.file.NoSuchFileException
            dup
            aload 0 /* fileToSync */
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            invokespecial java.nio.file.NoSuchFileException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 467
      StackMap locals:
      StackMap stack:
            return
         4: .line 469
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 2
            aconst_null
            astore 3
         5: aload 0 /* fileToSync */
            iconst_1
            anewarray java.nio.file.OpenOption
            dup
            iconst_0
            iload 1 /* isDir */
            ifeq 6
            getstatic java.nio.file.StandardOpenOption.READ:Ljava/nio/file/StandardOpenOption;
            goto 7
      StackMap locals: java.nio.file.Path int java.lang.Throwable java.lang.Throwable
      StackMap stack: java.nio.file.Path java.nio.file.OpenOption[] java.nio.file.OpenOption[] int
         6: getstatic java.nio.file.StandardOpenOption.WRITE:Ljava/nio/file/StandardOpenOption;
      StackMap locals: java.nio.file.Path int java.lang.Throwable java.lang.Throwable
      StackMap stack: java.nio.file.Path java.nio.file.OpenOption[] java.nio.file.OpenOption[] int java.nio.file.StandardOpenOption
         7: aastore
            invokestatic java.nio.channels.FileChannel.open:(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/nio/channels/FileChannel;
            astore 4 /* file */
        start local 4 // java.nio.channels.FileChannel file
         8: .line 471
            aload 4 /* file */
            iconst_1
            invokevirtual java.nio.channels.FileChannel.force:(Z)V
         9: .line 472
            goto 20
      StackMap locals: java.nio.file.Path int java.lang.Throwable java.lang.Throwable java.nio.channels.FileChannel
      StackMap stack: java.io.IOException
        10: astore 5 /* e */
        start local 5 // java.io.IOException e
        11: .line 473
            iload 1 /* isDir */
            ifeq 19
        12: .line 474
            getstatic org.apache.lucene.util.IOUtils.$assertionsDisabled:Z
            ifne 17
            getstatic org.apache.lucene.util.Constants.LINUX:Z
            ifne 13
            getstatic org.apache.lucene.util.Constants.MAC_OS_X:Z
            ifeq 17
      StackMap locals: java.io.IOException
      StackMap stack:
        13: new java.lang.AssertionError
            dup
        14: .line 475
            new java.lang.StringBuilder
            dup
            ldc "On Linux and MacOSX fsyncing a directory should not throw IOException, we just don't want to rely on that in production (undocumented). Got: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        15: .line 476
            aload 5 /* e */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        16: .line 475
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        17: .line 483
      StackMap locals:
      StackMap stack:
            aload 4 /* file */
            ifnull 18
            aload 4 /* file */
            invokevirtual java.nio.channels.FileChannel.close:()V
        18: .line 478
      StackMap locals:
      StackMap stack:
            return
        19: .line 481
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            athrow
        end local 5 // java.io.IOException e
        20: .line 483
      StackMap locals:
      StackMap stack:
            aload 4 /* file */
            ifnull 26
            aload 4 /* file */
            invokevirtual java.nio.channels.FileChannel.close:()V
            goto 26
      StackMap locals:
      StackMap stack: java.lang.Throwable
        21: astore 2
            aload 4 /* file */
            ifnull 22
            aload 4 /* file */
            invokevirtual java.nio.channels.FileChannel.close:()V
        end local 4 // java.nio.channels.FileChannel file
      StackMap locals:
      StackMap stack:
        22: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        23: astore 3
            aload 2
            ifnonnull 24
            aload 3
            astore 2
            goto 25
      StackMap locals:
      StackMap stack:
        24: aload 2
            aload 3
            if_acmpeq 25
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        25: aload 2
            athrow
        26: .line 484
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean isDir
        end local 0 // java.nio.file.Path fileToSync
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   27     0  fileToSync  Ljava/nio/file/Path;
            0   27     1       isDir  Z
            8   22     4        file  Ljava/nio/channels/FileChannel;
           11   20     5           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           8     9      10  Class java.io.IOException
           8    17      21  any
          19    20      21  any
           5    18      23  any
          19    23      23  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      fileToSync  
      isDir       

  public static boolean spins(org.apache.lucene.store.Directory);
    descriptor: (Lorg/apache/lucene/store/Directory;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.lucene.store.Directory dir
         0: .line 495
            aload 0 /* dir */
            invokestatic org.apache.lucene.store.FilterDirectory.unwrap:(Lorg/apache/lucene/store/Directory;)Lorg/apache/lucene/store/Directory;
            astore 0 /* dir */
         1: .line 496
            aload 0 /* dir */
            instanceof org.apache.lucene.store.FileSwitchDirectory
            ifeq 5
         2: .line 497
            aload 0 /* dir */
            checkcast org.apache.lucene.store.FileSwitchDirectory
            astore 1 /* fsd */
        start local 1 // org.apache.lucene.store.FileSwitchDirectory fsd
         3: .line 499
            aload 1 /* fsd */
            invokevirtual org.apache.lucene.store.FileSwitchDirectory.getPrimaryDir:()Lorg/apache/lucene/store/Directory;
            invokestatic org.apache.lucene.util.IOUtils.spins:(Lorg/apache/lucene/store/Directory;)Z
            ifne 4
            aload 1 /* fsd */
            invokevirtual org.apache.lucene.store.FileSwitchDirectory.getSecondaryDir:()Lorg/apache/lucene/store/Directory;
            invokestatic org.apache.lucene.util.IOUtils.spins:(Lorg/apache/lucene/store/Directory;)Z
            ifne 4
            iconst_0
            ireturn
      StackMap locals: org.apache.lucene.store.FileSwitchDirectory
      StackMap stack:
         4: iconst_1
            ireturn
        end local 1 // org.apache.lucene.store.FileSwitchDirectory fsd
         5: .line 500
      StackMap locals:
      StackMap stack:
            aload 0 /* dir */
            instanceof org.apache.lucene.store.RAMDirectory
            ifeq 7
         6: .line 501
            iconst_0
            ireturn
         7: .line 502
      StackMap locals:
      StackMap stack:
            aload 0 /* dir */
            instanceof org.apache.lucene.store.FSDirectory
            ifeq 9
         8: .line 503
            aload 0 /* dir */
            checkcast org.apache.lucene.store.FSDirectory
            invokevirtual org.apache.lucene.store.FSDirectory.getDirectory:()Ljava/nio/file/Path;
            invokestatic org.apache.lucene.util.IOUtils.spins:(Ljava/nio/file/Path;)Z
            ireturn
         9: .line 505
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 0 // org.apache.lucene.store.Directory dir
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0   dir  Lorg/apache/lucene/store/Directory;
            3    5     1   fsd  Lorg/apache/lucene/store/FileSwitchDirectory;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dir   

  public static boolean spins(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.nio.file.Path path
         0: .line 520
            aload 0 /* path */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface java.nio.file.Path.toRealPath:([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;
            astore 0 /* path */
         1: .line 523
            getstatic org.apache.lucene.util.Constants.LINUX:Z
            ifne 3
         2: .line 524
            iconst_1
            ireturn
         3: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* path */
            invokestatic org.apache.lucene.util.IOUtils.spinsLinux:(Ljava/nio/file/Path;)Z
         4: ireturn
         5: .line 529
      StackMap locals:
      StackMap stack: java.lang.Exception
            pop
         6: .line 531
            iconst_1
            ireturn
        end local 0 // java.nio.file.Path path
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  path  Ljava/nio/file/Path;
      Exception table:
        from    to  target  type
           3     4       5  Class java.lang.Exception
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      path  

  static boolean spinsLinux(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=12, args_size=1
        start local 0 // java.nio.file.Path path
         0: .line 539
            aload 0 /* path */
            invokestatic org.apache.lucene.util.IOUtils.getFileStore:(Ljava/nio/file/Path;)Ljava/nio/file/FileStore;
            astore 1 /* store */
        start local 1 // java.nio.file.FileStore store
         1: .line 543
            ldc "tmpfs"
            aload 1 /* store */
            invokevirtual java.nio.file.FileStore.type:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 3
         2: .line 544
            iconst_0
            ireturn
         3: .line 548
      StackMap locals: java.nio.file.FileStore
      StackMap stack:
            aload 1 /* store */
            invokevirtual java.nio.file.FileStore.name:()Ljava/lang/String;
            astore 2 /* devName */
        start local 2 // java.lang.String devName
         4: .line 551
            aload 2 /* devName */
            ldc "/"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifne 6
         5: .line 552
            iconst_1
            ireturn
         6: .line 558
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* path */
            invokeinterface java.nio.file.Path.getRoot:()Ljava/nio/file/Path;
            aload 2 /* devName */
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface java.nio.file.Path.toRealPath:([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            astore 2 /* devName */
         7: .line 562
            aload 0 /* path */
            invokeinterface java.nio.file.Path.getRoot:()Ljava/nio/file/Path;
            ldc "sys"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            ldc "block"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 3 /* sysinfo */
        start local 3 // java.nio.file.Path sysinfo
         8: .line 563
            aconst_null
            astore 4 /* devsysinfo */
        start local 4 // java.nio.file.Path devsysinfo
         9: .line 564
            iconst_0
            istore 5 /* matchlen */
        start local 5 // int matchlen
        10: .line 565
            aconst_null
            astore 6
            aconst_null
            astore 7
        11: aload 3 /* sysinfo */
            invokestatic java.nio.file.Files.newDirectoryStream:(Ljava/nio/file/Path;)Ljava/nio/file/DirectoryStream;
            astore 8 /* stream */
        start local 8 // java.nio.file.DirectoryStream stream
        12: .line 566
            aload 8 /* stream */
            invokeinterface java.nio.file.DirectoryStream.iterator:()Ljava/util/Iterator;
            astore 10
            goto 18
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.Path java.nio.file.Path int java.lang.Throwable java.lang.Throwable java.nio.file.DirectoryStream top java.util.Iterator
      StackMap stack:
        13: aload 10
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.file.Path
            astore 9 /* device */
        start local 9 // java.nio.file.Path device
        14: .line 567
            aload 9 /* device */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            astore 11 /* name */
        start local 11 // java.lang.String name
        15: .line 568
            aload 11 /* name */
            invokevirtual java.lang.String.length:()I
            iload 5 /* matchlen */
            if_icmple 18
            aload 2 /* devName */
            aload 11 /* name */
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 18
        16: .line 569
            aload 9 /* device */
            astore 4 /* devsysinfo */
        17: .line 570
            aload 11 /* name */
            invokevirtual java.lang.String.length:()I
            istore 5 /* matchlen */
        end local 11 // java.lang.String name
        end local 9 // java.nio.file.Path device
        18: .line 566
      StackMap locals:
      StackMap stack:
            aload 10
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 13
        19: .line 573
            aload 8 /* stream */
            ifnull 25
            aload 8 /* stream */
            invokeinterface java.nio.file.DirectoryStream.close:()V
            goto 25
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.Path java.nio.file.Path int java.lang.Throwable java.lang.Throwable java.nio.file.DirectoryStream
      StackMap stack: java.lang.Throwable
        20: astore 6
            aload 8 /* stream */
            ifnull 21
            aload 8 /* stream */
            invokeinterface java.nio.file.DirectoryStream.close:()V
        end local 8 // java.nio.file.DirectoryStream stream
      StackMap locals:
      StackMap stack:
        21: aload 6
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        22: astore 7
            aload 6
            ifnonnull 23
            aload 7
            astore 6
            goto 24
      StackMap locals:
      StackMap stack:
        23: aload 6
            aload 7
            if_acmpeq 24
            aload 6
            aload 7
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        24: aload 6
            athrow
        25: .line 575
      StackMap locals:
      StackMap stack:
            aload 4 /* devsysinfo */
            ifnonnull 27
        26: .line 576
            iconst_1
            ireturn
        27: .line 580
      StackMap locals:
      StackMap stack:
            aload 4 /* devsysinfo */
            ldc "queue"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            ldc "rotational"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 6 /* rotational */
        start local 6 // java.nio.file.Path rotational
        28: .line 581
            aconst_null
            astore 7
            aconst_null
            astore 8
        29: aload 6 /* rotational */
            iconst_0
            anewarray java.nio.file.OpenOption
            invokestatic java.nio.file.Files.newInputStream:(Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/InputStream;
            astore 9 /* stream */
        start local 9 // java.io.InputStream stream
        30: .line 582
            aload 9 /* stream */
            invokevirtual java.io.InputStream.read:()I
            bipush 49
            if_icmpne 31
            iconst_1
            goto 32
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.Path java.nio.file.Path int java.nio.file.Path java.lang.Throwable java.lang.Throwable java.io.InputStream
      StackMap stack:
        31: iconst_0
        32: .line 583
      StackMap locals:
      StackMap stack: int
            aload 9 /* stream */
            ifnull 33
            aload 9 /* stream */
            invokevirtual java.io.InputStream.close:()V
        33: .line 582
      StackMap locals:
      StackMap stack: int
            ireturn
      StackMap locals:
      StackMap stack: java.lang.Throwable
        34: astore 7
        35: .line 583
            aload 9 /* stream */
            ifnull 36
            aload 9 /* stream */
            invokevirtual java.io.InputStream.close:()V
        end local 9 // java.io.InputStream stream
      StackMap locals:
      StackMap stack:
        36: aload 7
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        37: astore 8
            aload 7
            ifnonnull 38
            aload 8
            astore 7
            goto 39
      StackMap locals:
      StackMap stack:
        38: aload 7
            aload 8
            if_acmpeq 39
            aload 7
            aload 8
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        39: aload 7
            athrow
        end local 6 // java.nio.file.Path rotational
        end local 5 // int matchlen
        end local 4 // java.nio.file.Path devsysinfo
        end local 3 // java.nio.file.Path sysinfo
        end local 2 // java.lang.String devName
        end local 1 // java.nio.file.FileStore store
        end local 0 // java.nio.file.Path path
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   40     0        path  Ljava/nio/file/Path;
            1   40     1       store  Ljava/nio/file/FileStore;
            4   40     2     devName  Ljava/lang/String;
            8   40     3     sysinfo  Ljava/nio/file/Path;
            9   40     4  devsysinfo  Ljava/nio/file/Path;
           10   40     5    matchlen  I
           12   21     8      stream  Ljava/nio/file/DirectoryStream<Ljava/nio/file/Path;>;
           14   18     9      device  Ljava/nio/file/Path;
           15   18    11        name  Ljava/lang/String;
           28   40     6  rotational  Ljava/nio/file/Path;
           30   36     9      stream  Ljava/io/InputStream;
      Exception table:
        from    to  target  type
          12    19      20  any
          11    22      22  any
          30    32      34  any
          29    33      37  any
          34    37      37  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      path  

  static java.nio.file.FileStore getFileStore(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Ljava/nio/file/FileStore;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // java.nio.file.Path path
         0: .line 589
            aload 0 /* path */
            invokestatic java.nio.file.Files.getFileStore:(Ljava/nio/file/Path;)Ljava/nio/file/FileStore;
            astore 1 /* store */
        start local 1 // java.nio.file.FileStore store
         1: .line 590
            aload 1 /* store */
            invokestatic org.apache.lucene.util.IOUtils.getMountPoint:(Ljava/nio/file/FileStore;)Ljava/lang/String;
            astore 2 /* mount */
        start local 2 // java.lang.String mount
         2: .line 594
            aconst_null
            astore 3 /* sameMountPoint */
        start local 3 // java.nio.file.FileStore sameMountPoint
         3: .line 595
            aload 0 /* path */
            invokeinterface java.nio.file.Path.getFileSystem:()Ljava/nio/file/FileSystem;
            invokevirtual java.nio.file.FileSystem.getFileStores:()Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 5
            goto 10
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.FileStore top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.file.FileStore
            astore 4 /* fs */
        start local 4 // java.nio.file.FileStore fs
         5: .line 596
            aload 2 /* mount */
            aload 4 /* fs */
            invokestatic org.apache.lucene.util.IOUtils.getMountPoint:(Ljava/nio/file/FileStore;)Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         6: .line 597
            aload 3 /* sameMountPoint */
            ifnonnull 9
         7: .line 598
            aload 4 /* fs */
            astore 3 /* sameMountPoint */
         8: .line 599
            goto 10
         9: .line 602
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.FileStore java.nio.file.FileStore java.util.Iterator
      StackMap stack:
            aload 1 /* store */
            areturn
        end local 4 // java.nio.file.FileStore fs
        10: .line 595
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.FileStore top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        11: .line 607
            aload 3 /* sameMountPoint */
            ifnull 13
        12: .line 609
            aload 3 /* sameMountPoint */
            areturn
        13: .line 612
      StackMap locals: java.nio.file.Path java.nio.file.FileStore java.lang.String java.nio.file.FileStore
      StackMap stack:
            aload 1 /* store */
            areturn
        end local 3 // java.nio.file.FileStore sameMountPoint
        end local 2 // java.lang.String mount
        end local 1 // java.nio.file.FileStore store
        end local 0 // java.nio.file.Path path
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   14     0            path  Ljava/nio/file/Path;
            1   14     1           store  Ljava/nio/file/FileStore;
            2   14     2           mount  Ljava/lang/String;
            3   14     3  sameMountPoint  Ljava/nio/file/FileStore;
            5   10     4              fs  Ljava/nio/file/FileStore;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      path  

  static java.lang.String getMountPoint(java.nio.file.FileStore);
    descriptor: (Ljava/nio/file/FileStore;)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.nio.file.FileStore store
         0: .line 618
            aload 0 /* store */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            astore 1 /* desc */
        start local 1 // java.lang.String desc
         1: .line 619
            aload 1 /* desc */
            ldc " ("
            invokevirtual java.lang.String.lastIndexOf:(Ljava/lang/String;)I
            istore 2 /* index */
        start local 2 // int index
         2: .line 620
            iload 2 /* index */
            iconst_m1
            if_icmpeq 4
         3: .line 621
            aload 1 /* desc */
            iconst_0
            iload 2 /* index */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            areturn
         4: .line 623
      StackMap locals: java.lang.String int
      StackMap stack:
            aload 1 /* desc */
            areturn
        end local 2 // int index
        end local 1 // java.lang.String desc
        end local 0 // java.nio.file.FileStore store
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0  store  Ljava/nio/file/FileStore;
            1    5     1   desc  Ljava/lang/String;
            2    5     2  index  I
    MethodParameters:
       Name  Flags
      store  

  public static <T extends java.lang.Throwable> T useOrSuppress(T, );
    descriptor: (Ljava/lang/Throwable;Ljava/lang/Throwable;)Ljava/lang/Throwable;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.Throwable first
        start local 1 // java.lang.Throwable second
         0: .line 632
            aload 0 /* first */
            ifnonnull 2
         1: .line 633
            aload 1 /* second */
            areturn
         2: .line 635
      StackMap locals:
      StackMap stack:
            aload 0 /* first */
            aload 1 /* second */
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
         3: .line 637
            aload 0 /* first */
            areturn
        end local 1 // java.lang.Throwable second
        end local 0 // java.lang.Throwable first
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   first  TT;
            0    4     1  second  TT;
    Signature: <T:Ljava/lang/Throwable;>(TT;TT;)TT;
    MethodParameters:
        Name  Flags
      first   
      second  

  public static <T> void applyToAll(java.util.Collection<T>, org.apache.lucene.util.IOUtils$IOConsumer<T>);
    descriptor: (Ljava/util/Collection;Lorg/apache/lucene/util/IOUtils$IOConsumer;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.Collection collection
        start local 1 // org.apache.lucene.util.IOUtils$IOConsumer consumer
         0: .line 645
            aload 0 /* collection */
            invokeinterface java.util.Collection.stream:()Ljava/util/stream/Stream;
            invokedynamic test()Ljava/util/function/Predicate;
              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;)Z
                  java/util/Objects.nonNull(Ljava/lang/Object;)Z (6)
                  (Ljava/lang/Object;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
            aload 1 /* consumer */
            invokedynamic apply(Lorg/apache/lucene/util/IOUtils$IOConsumer;)Ljava/util/function/Function;
              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;)Ljava/lang/Object;
                  org/apache/lucene/util/IOUtils.lambda$2(Lorg/apache/lucene/util/IOUtils$IOConsumer;Ljava/lang/Object;)Ljava/io/Closeable; (6)
                  (Ljava/lang/Object;)Ljava/io/Closeable;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic iterator(Ljava/util/stream/Stream;)Ljava/lang/Iterable;
              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/util/Iterator;
                  java/util/stream/BaseStream.iterator()Ljava/util/Iterator; (9 itf)
                  ()Ljava/util/Iterator;
            invokestatic org.apache.lucene.util.IOUtils.close:(Ljava/lang/Iterable;)V
         1: .line 646
            return
        end local 1 // org.apache.lucene.util.IOUtils$IOConsumer consumer
        end local 0 // java.util.Collection collection
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0  collection  Ljava/util/Collection<TT;>;
            0    2     1    consumer  Lorg/apache/lucene/util/IOUtils$IOConsumer<TT;>;
    Exceptions:
      throws java.io.IOException
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Collection<TT;>;Lorg/apache/lucene/util/IOUtils$IOConsumer<TT;>;)V
    MethodParameters:
            Name  Flags
      collection  
      consumer    

  private static java.io.Closeable lambda$2(org.apache.lucene.util.IOUtils$IOConsumer, java.lang.Object);
    descriptor: (Lorg/apache/lucene/util/IOUtils$IOConsumer;Ljava/lang/Object;)Ljava/io/Closeable;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 1 // java.lang.Object t
         0: .line 645
            aload 0
            aload 1 /* t */
            invokedynamic close(Lorg/apache/lucene/util/IOUtils$IOConsumer;Ljava/lang/Object;)Ljava/io/Closeable;
              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:
                  ()V
                  org/apache/lucene/util/IOUtils.lambda$3(Lorg/apache/lucene/util/IOUtils$IOConsumer;Ljava/lang/Object;)V (6)
                  ()V
            areturn
        end local 1 // java.lang.Object t
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     1     t  TT;

  private static void lambda$3(org.apache.lucene.util.IOUtils$IOConsumer, java.lang.Object);
    descriptor: (Lorg/apache/lucene/util/IOUtils$IOConsumer;Ljava/lang/Object;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 645
            aload 0
            aload 1
            invokeinterface org.apache.lucene.util.IOUtils$IOConsumer.accept:(Ljava/lang/Object;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "IOUtils.java"
NestMembers:
  org.apache.lucene.util.IOUtils$1  org.apache.lucene.util.IOUtils$IOConsumer  org.apache.lucene.util.IOUtils$IOFunction
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Entry = java.util.Map$Entry of java.util.Map
  org.apache.lucene.util.IOUtils$1
  public abstract IOConsumer = org.apache.lucene.util.IOUtils$IOConsumer of org.apache.lucene.util.IOUtils
  public abstract IOFunction = org.apache.lucene.util.IOUtils$IOFunction of org.apache.lucene.util.IOUtils