public final class com.google.common.io.FileBackedOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.google.common.io.FileBackedOutputStream
  super_class: java.io.OutputStream
{
  private final int fileThreshold;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean resetOnFinalize;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.google.common.io.ByteSource source;
    descriptor: Lcom/google/common/io/ByteSource;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.io.File parentDirectory;
    descriptor: Ljava/io/File;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  private java.io.OutputStream out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0002) ACC_PRIVATE
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.concurrent.GuardedBy(value = "this")

  private com.google.common.io.FileBackedOutputStream$MemoryOutput memory;
    descriptor: Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
    flags: (0x0002) ACC_PRIVATE
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.concurrent.GuardedBy(value = "this")

  private java.io.File file;
    descriptor: Ljava/io/File;
    flags: (0x0002) ACC_PRIVATE
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.concurrent.GuardedBy(value = "this")
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  synchronized java.io.File getFile();
    descriptor: ()Ljava/io/File;
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.io.FileBackedOutputStream this
         0: .line 82
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            areturn
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/io/FileBackedOutputStream;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.google.common.annotations.VisibleForTesting()

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // int fileThreshold
         0: .line 92
            aload 0 /* this */
            iload 1 /* fileThreshold */
            iconst_0
            invokespecial com.google.common.io.FileBackedOutputStream.<init>:(IZ)V
         1: .line 93
            return
        end local 1 // int fileThreshold
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lcom/google/common/io/FileBackedOutputStream;
            0    2     1  fileThreshold  I
    MethodParameters:
               Name  Flags
      fileThreshold  

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // int fileThreshold
        start local 2 // boolean resetOnFinalize
         0: .line 104
            aload 0 /* this */
            iload 1 /* fileThreshold */
            iload 2 /* resetOnFinalize */
            aconst_null
            invokespecial com.google.common.io.FileBackedOutputStream.<init>:(IZLjava/io/File;)V
         1: .line 105
            return
        end local 2 // boolean resetOnFinalize
        end local 1 // int fileThreshold
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lcom/google/common/io/FileBackedOutputStream;
            0    2     1    fileThreshold  I
            0    2     2  resetOnFinalize  Z
    MethodParameters:
                 Name  Flags
      fileThreshold    
      resetOnFinalize  

  private void <init>(int, boolean, java.io.File);
    descriptor: (IZLjava/io/File;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // int fileThreshold
        start local 2 // boolean resetOnFinalize
        start local 3 // java.io.File parentDirectory
         0: .line 107
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 109
            aload 0 /* this */
            iload 1 /* fileThreshold */
            putfield com.google.common.io.FileBackedOutputStream.fileThreshold:I
         2: .line 110
            aload 0 /* this */
            iload 2 /* resetOnFinalize */
            putfield com.google.common.io.FileBackedOutputStream.resetOnFinalize:Z
         3: .line 111
            aload 0 /* this */
            aload 3 /* parentDirectory */
            putfield com.google.common.io.FileBackedOutputStream.parentDirectory:Ljava/io/File;
         4: .line 112
            aload 0 /* this */
            new com.google.common.io.FileBackedOutputStream$MemoryOutput
            dup
            invokespecial com.google.common.io.FileBackedOutputStream$MemoryOutput.<init>:()V
            putfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
         5: .line 113
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            putfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
         6: .line 115
            iload 2 /* resetOnFinalize */
            ifeq 11
         7: .line 116
            aload 0 /* this */
         8: .line 117
            new com.google.common.io.FileBackedOutputStream$1
            dup
            aload 0 /* this */
            invokespecial com.google.common.io.FileBackedOutputStream$1.<init>:(Lcom/google/common/io/FileBackedOutputStream;)V
         9: .line 116
            putfield com.google.common.io.FileBackedOutputStream.source:Lcom/google/common/io/ByteSource;
        10: .line 132
            goto 14
        11: .line 133
      StackMap locals: com.google.common.io.FileBackedOutputStream int int java.io.File
      StackMap stack:
            aload 0 /* this */
        12: .line 134
            new com.google.common.io.FileBackedOutputStream$2
            dup
            aload 0 /* this */
            invokespecial com.google.common.io.FileBackedOutputStream$2.<init>:(Lcom/google/common/io/FileBackedOutputStream;)V
        13: .line 133
            putfield com.google.common.io.FileBackedOutputStream.source:Lcom/google/common/io/ByteSource;
        14: .line 141
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.io.File parentDirectory
        end local 2 // boolean resetOnFinalize
        end local 1 // int fileThreshold
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   15     0             this  Lcom/google/common/io/FileBackedOutputStream;
            0   15     1    fileThreshold  I
            0   15     2  resetOnFinalize  Z
            0   15     3  parentDirectory  Ljava/io/File;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
                 Name  Flags
      fileThreshold    
      resetOnFinalize  
      parentDirectory  

  public com.google.common.io.ByteSource asByteSource();
    descriptor: ()Lcom/google/common/io/ByteSource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.io.FileBackedOutputStream this
         0: .line 149
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.source:Lcom/google/common/io/ByteSource;
            areturn
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/io/FileBackedOutputStream;

  private synchronized java.io.InputStream openInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.google.common.io.FileBackedOutputStream this
         0: .line 153
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            ifnull 2
         1: .line 154
            new java.io.FileInputStream
            dup
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            areturn
         2: .line 156
      StackMap locals:
      StackMap stack:
            new java.io.ByteArrayInputStream
            dup
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.getBuffer:()[B
            iconst_0
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.getCount:()I
            invokespecial java.io.ByteArrayInputStream.<init>:([BII)V
            areturn
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/io/FileBackedOutputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized void reset();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.google.common.io.FileBackedOutputStream this
         0: .line 168
            aload 0 /* this */
            invokevirtual com.google.common.io.FileBackedOutputStream.close:()V
         1: .line 169
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 1
         3: .line 170
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            ifnonnull 6
         4: .line 171
            aload 0 /* this */
            new com.google.common.io.FileBackedOutputStream$MemoryOutput
            dup
            invokespecial com.google.common.io.FileBackedOutputStream$MemoryOutput.<init>:()V
            putfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
         5: .line 172
            goto 7
         6: .line 173
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.reset:()V
         7: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            putfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
         8: .line 176
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            ifnull 13
         9: .line 177
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            astore 2 /* deleteMe */
        start local 2 // java.io.File deleteMe
        10: .line 178
            aload 0 /* this */
            aconst_null
            putfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
        11: .line 179
            aload 2 /* deleteMe */
            invokevirtual java.io.File.delete:()Z
            ifne 13
        12: .line 180
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Could not delete: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* deleteMe */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.io.File deleteMe
        13: .line 183
      StackMap locals:
      StackMap stack:
            aload 1
            athrow
        14: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            ifnonnull 17
        15: .line 171
            aload 0 /* this */
            new com.google.common.io.FileBackedOutputStream$MemoryOutput
            dup
            invokespecial com.google.common.io.FileBackedOutputStream$MemoryOutput.<init>:()V
            putfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
        16: .line 172
            goto 18
        17: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.reset:()V
        18: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            putfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
        19: .line 176
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            ifnull 24
        20: .line 177
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            astore 2 /* deleteMe */
        start local 2 // java.io.File deleteMe
        21: .line 178
            aload 0 /* this */
            aconst_null
            putfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
        22: .line 179
            aload 2 /* deleteMe */
            invokevirtual java.io.File.delete:()Z
            ifne 24
        23: .line 180
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Could not delete: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* deleteMe */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // java.io.File deleteMe
        24: .line 184
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0      this  Lcom/google/common/io/FileBackedOutputStream;
           10   13     2  deleteMe  Ljava/io/File;
           21   24     2  deleteMe  Ljava/io/File;
      Exception table:
        from    to  target  type
           0     2       2  any
    Exceptions:
      throws java.io.IOException

  public synchronized void write(int);
    descriptor: (I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // int b
         0: .line 188
            aload 0 /* this */
            iconst_1
            invokevirtual com.google.common.io.FileBackedOutputStream.update:(I)V
         1: .line 189
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         2: .line 190
            return
        end local 1 // int b
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/io/FileBackedOutputStream;
            0    3     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public synchronized void write(byte[]);
    descriptor: ([B)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // byte[] b
         0: .line 194
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual com.google.common.io.FileBackedOutputStream.write:([BII)V
         1: .line 195
            return
        end local 1 // byte[] b
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/io/FileBackedOutputStream;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public synchronized void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 199
            aload 0 /* this */
            iload 3 /* len */
            invokevirtual com.google.common.io.FileBackedOutputStream.update:(I)V
         1: .line 200
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         2: .line 201
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/io/FileBackedOutputStream;
            0    3     1     b  [B
            0    3     2   off  I
            0    3     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public synchronized void close();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.io.FileBackedOutputStream this
         0: .line 205
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
         1: .line 206
            return
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/io/FileBackedOutputStream;
    Exceptions:
      throws java.io.IOException

  public synchronized void flush();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.io.FileBackedOutputStream this
         0: .line 210
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         1: .line 211
            return
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/io/FileBackedOutputStream;
    Exceptions:
      throws java.io.IOException

  private void update(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.google.common.io.FileBackedOutputStream this
        start local 1 // int len
         0: .line 219
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
            ifnonnull 10
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.getCount:()I
            iload 1 /* len */
            iadd
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.fileThreshold:I
            if_icmple 10
         1: .line 220
            ldc "FileBackedOutputStream"
            aconst_null
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.parentDirectory:Ljava/io/File;
            invokestatic java.io.File.createTempFile:(Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File;
            astore 2 /* temp */
        start local 2 // java.io.File temp
         2: .line 221
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.resetOnFinalize:Z
            ifeq 4
         3: .line 224
            aload 2 /* temp */
            invokevirtual java.io.File.deleteOnExit:()V
         4: .line 226
      StackMap locals: java.io.File
      StackMap stack:
            new java.io.FileOutputStream
            dup
            aload 2 /* temp */
            invokespecial java.io.FileOutputStream.<init>:(Ljava/io/File;)V
            astore 3 /* transfer */
        start local 3 // java.io.FileOutputStream transfer
         5: .line 227
            aload 3 /* transfer */
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.getBuffer:()[B
            iconst_0
            aload 0 /* this */
            getfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
            invokevirtual com.google.common.io.FileBackedOutputStream$MemoryOutput.getCount:()I
            invokevirtual java.io.FileOutputStream.write:([BII)V
         6: .line 228
            aload 3 /* transfer */
            invokevirtual java.io.FileOutputStream.flush:()V
         7: .line 231
            aload 0 /* this */
            aload 3 /* transfer */
            putfield com.google.common.io.FileBackedOutputStream.out:Ljava/io/OutputStream;
         8: .line 232
            aload 0 /* this */
            aload 2 /* temp */
            putfield com.google.common.io.FileBackedOutputStream.file:Ljava/io/File;
         9: .line 233
            aload 0 /* this */
            aconst_null
            putfield com.google.common.io.FileBackedOutputStream.memory:Lcom/google/common/io/FileBackedOutputStream$MemoryOutput;
        end local 3 // java.io.FileOutputStream transfer
        end local 2 // java.io.File temp
        10: .line 235
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int len
        end local 0 // com.google.common.io.FileBackedOutputStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/google/common/io/FileBackedOutputStream;
            0   11     1       len  I
            2   10     2      temp  Ljava/io/File;
            5   10     3  transfer  Ljava/io/FileOutputStream;
    Exceptions:
      throws java.io.IOException
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.concurrent.GuardedBy(value = "this")
    MethodParameters:
      Name  Flags
      len   
}
SourceFile: "FileBackedOutputStream.java"
NestMembers:
  com.google.common.io.FileBackedOutputStream$1  com.google.common.io.FileBackedOutputStream$2  com.google.common.io.FileBackedOutputStream$MemoryOutput
InnerClasses:
  com.google.common.io.FileBackedOutputStream$1
  com.google.common.io.FileBackedOutputStream$2
  private MemoryOutput = com.google.common.io.FileBackedOutputStream$MemoryOutput of com.google.common.io.FileBackedOutputStream
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.Beta()
      com.google.common.annotations.GwtIncompatible()