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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 33
            ldc Lcom/google/common/io/Flushables;
            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.Flushables.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.Flushables this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.google.common.io.Flushables this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/io/Flushables;

  public static void flush(java.io.Flushable, boolean);
    descriptor: (Ljava/io/Flushable;Z)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.Flushable flushable
        start local 1 // boolean swallowIOException
         0: .line 52
            aload 0 /* flushable */
            invokeinterface java.io.Flushable.flush:()V
         1: .line 53
            goto 7
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* e */
        start local 2 // java.io.IOException e
         3: .line 54
            iload 1 /* swallowIOException */
            ifeq 6
         4: .line 55
            getstatic com.google.common.io.Flushables.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.WARNING:Ljava/util/logging/Level;
            ldc "IOException thrown while flushing Flushable."
            aload 2 /* e */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
         5: .line 56
            goto 7
         6: .line 57
      StackMap locals: java.io.IOException
      StackMap stack:
            aload 2 /* e */
            athrow
        end local 2 // java.io.IOException e
         7: .line 60
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean swallowIOException
        end local 0 // java.io.Flushable flushable
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    8     0           flushable  Ljava/io/Flushable;
            0    8     1  swallowIOException  Z
            3    7     2                   e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                    Name  Flags
      flushable           
      swallowIOException  

  public static void flushQuietly(java.io.Flushable);
    descriptor: (Ljava/io/Flushable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.io.Flushable flushable
         0: .line 70
            aload 0 /* flushable */
            iconst_1
            invokestatic com.google.common.io.Flushables.flush:(Ljava/io/Flushable;Z)V
         1: .line 71
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 72
            getstatic com.google.common.io.Flushables.logger:Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.SEVERE:Ljava/util/logging/Level;
            ldc "IOException should not have been thrown."
            aload 1 /* e */
            invokevirtual java.util.logging.Logger.log:(Ljava/util/logging/Level;Ljava/lang/String;Ljava/lang/Throwable;)V
        end local 1 // java.io.IOException e
         4: .line 74
      StackMap locals:
      StackMap stack:
            return
        end local 0 // java.io.Flushable flushable
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0  flushable  Ljava/io/Flushable;
            3    4     1          e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
           Name  Flags
      flushable  
}
SourceFile: "Flushables.java"
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()