public final class com.google.common.io.Closeables
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.io.Closeables
  super_class: java.lang.Object
{
  static final java.util.logging.Logger logger;
    descriptor: Ljava/util/logging/Logger;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 37
            ldc Lcom/google/common/io/Closeables;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
            putstatic com.google.common.io.Closeables.logger:Ljava/util/logging/Logger;
            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 // com.google.common.io.Closeables this
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.io.Closeables this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/io/Closeables;

  public static void close(java.io.Closeable, boolean);
    descriptor: (Ljava/io/Closeable;Z)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.Closeable closeable
        start local 1 // boolean swallowIOException
         0: .line 74
            aload 0 /* closeable */
            ifnonnull 2
         1: .line 75
            return
         2: .line 78
      StackMap locals:
      StackMap stack:
            aload 0 /* closeable */
            invokeinterface java.io.Closeable.close:()V
         3: .line 79
            goto 9
      StackMap locals:
      StackMap stack: java.io.IOException
         4: astore 2 /* e */
        start local 2 // java.io.IOException e
         5: .line 80
            iload 1 /* swallowIOException */
            ifeq 8
         6: .line 81
            getstatic com.google.common.io.Closeables.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "IOException thrown while closing Closeable."
            aload 2 /* e */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
         7: .line 82
            goto 9
         8: .line 83
      StackMap locals: java.io.IOException
      StackMap stack:
            aload 2 /* e */
            athrow
        end local 2 // java.io.IOException e
         9: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean swallowIOException
        end local 0 // java.io.Closeable closeable
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   10     0           closeable  Ljava/io/Closeable;
            0   10     1  swallowIOException  Z
            5    9     2                   e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
                    Name  Flags
      closeable           
      swallowIOException  

  public static void closeQuietly(java.io.InputStream);
    descriptor: (Ljava/io/InputStream;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.InputStream inputStream
         0: .line 104
            aload 0 /* inputStream */
            iconst_1
            invokestatic com.google.common.io.Closeables.close:(Ljava/io/Closeable;Z)V
         1: .line 105
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* impossible */
        start local 1 // java.io.IOException impossible
         3: .line 106
            new java.lang.AssertionError
            dup
            aload 1 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 1 // java.io.IOException impossible
         4: .line 108
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.InputStream inputStream
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    5     0  inputStream  Ljava/io/InputStream;
            3    4     1   impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
             Name  Flags
      inputStream  

  public static void closeQuietly(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.io.Reader reader
         0: .line 125
            aload 0 /* reader */
            iconst_1
            invokestatic com.google.common.io.Closeables.close:(Ljava/io/Closeable;Z)V
         1: .line 126
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* impossible */
        start local 1 // java.io.IOException impossible
         3: .line 127
            new java.lang.AssertionError
            dup
            aload 1 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 1 // java.io.IOException impossible
         4: .line 129
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.Reader reader
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0      reader  Ljava/io/Reader;
            3    4     1  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      reader  
}
SourceFile: "Closeables.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()