class org.eclipse.jgit.internal.storage.file.LockFile$1 extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.eclipse.jgit.internal.storage.file.LockFile$1
  super_class: java.io.OutputStream
{
  final org.eclipse.jgit.internal.storage.file.LockFile this$0;
    descriptor: Lorg/eclipse/jgit/internal/storage/file/LockFile;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final java.io.OutputStream val$out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(org.eclipse.jgit.internal.storage.file.LockFile, java.io.OutputStream);
    descriptor: (Lorg/eclipse/jgit/internal/storage/file/LockFile;Ljava/io/OutputStream;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
         0: .line 325
            aload 0 /* this */
            aload 1
            putfield org.eclipse.jgit.internal.storage.file.LockFile$1.this$0:Lorg/eclipse/jgit/internal/storage/file/LockFile;
            aload 0 /* this */
            aload 2
            putfield org.eclipse.jgit.internal.storage.file.LockFile$1.val$out:Ljava/io/OutputStream;
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
            return
        end local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/internal/storage/file/LockFile$1;
    MethodParameters:
         Name  Flags
      this$0   final
      val$out  final

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
        start local 1 // byte[] b
        start local 2 // int o
        start local 3 // int n
         0: .line 329
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.val$out:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* o */
            iload 3 /* n */
            invokevirtual java.io.OutputStream.write:([BII)V
         1: .line 330
            return
        end local 3 // int n
        end local 2 // int o
        end local 1 // byte[] b
        end local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/internal/storage/file/LockFile$1;
            0    2     1     b  [B
            0    2     2     o  I
            0    2     3     n  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      o     
      n     

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
        start local 1 // byte[] b
         0: .line 334
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.val$out:Ljava/io/OutputStream;
            aload 1 /* b */
            invokevirtual java.io.OutputStream.write:([B)V
         1: .line 335
            return
        end local 1 // byte[] b
        end local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/internal/storage/file/LockFile$1;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
        start local 1 // int b
         0: .line 339
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.val$out:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 340
            return
        end local 1 // int b
        end local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/internal/storage/file/LockFile$1;
            0    2     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
         0: .line 345
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.this$0:Lorg/eclipse/jgit/internal/storage/file/LockFile;
            getfield org.eclipse.jgit.internal.storage.file.LockFile.fsync:Z
            ifeq 2
         1: .line 346
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.this$0:Lorg/eclipse/jgit/internal/storage/file/LockFile;
            getfield org.eclipse.jgit.internal.storage.file.LockFile.os:Ljava/io/FileOutputStream;
            invokevirtual java.io.FileOutputStream.getChannel:()Ljava/nio/channels/FileChannel;
            iconst_1
            invokevirtual java.nio.channels.FileChannel.force:(Z)V
         2: .line 347
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.val$out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
         3: .line 348
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.this$0:Lorg/eclipse/jgit/internal/storage/file/LockFile;
            aconst_null
            putfield org.eclipse.jgit.internal.storage.file.LockFile.os:Ljava/io/FileOutputStream;
         4: .line 349
            goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: astore 1 /* ioe */
        start local 1 // java.lang.Throwable ioe
         6: .line 350
            aload 0 /* this */
            getfield org.eclipse.jgit.internal.storage.file.LockFile$1.this$0:Lorg/eclipse/jgit/internal/storage/file/LockFile;
            invokevirtual org.eclipse.jgit.internal.storage.file.LockFile.unlock:()V
         7: .line 351
            aload 1 /* ioe */
            athrow
        end local 1 // java.lang.Throwable ioe
         8: .line 353
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jgit.internal.storage.file.LockFile$1 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/jgit/internal/storage/file/LockFile$1;
            6    8     1   ioe  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     4       5  Class java.io.IOException
           0     4       5  Class java.lang.RuntimeException
           0     4       5  Class java.lang.Error
    Exceptions:
      throws java.io.IOException
}
SourceFile: "LockFile.java"
EnclosingMethod: org.eclipse.jgit.internal.storage.file.LockFile.getOutputStream:()Ljava/io/OutputStream;
NestHost: org.eclipse.jgit.internal.storage.file.LockFile
InnerClasses:
  org.eclipse.jgit.internal.storage.file.LockFile$1