public class org.apache.http.impl.io.IdentityOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.http.impl.io.IdentityOutputStream
  super_class: java.io.OutputStream
{
  private final org.apache.http.io.SessionOutputBuffer out;
    descriptor: Lorg/apache/http/io/SessionOutputBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private boolean closed;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.apache.http.io.SessionOutputBuffer);
    descriptor: (Lorg/apache/http/io/SessionOutputBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.http.impl.io.IdentityOutputStream this
        start local 1 // org.apache.http.io.SessionOutputBuffer out
         0: .line 59
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 56
            aload 0 /* this */
            iconst_0
            putfield org.apache.http.impl.io.IdentityOutputStream.closed:Z
         2: .line 60
            aload 0 /* this */
            aload 1 /* out */
            ldc "Session output buffer"
            invokestatic org.apache.http.util.Args.notNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast org.apache.http.io.SessionOutputBuffer
            putfield org.apache.http.impl.io.IdentityOutputStream.out:Lorg/apache/http/io/SessionOutputBuffer;
         3: .line 61
            return
        end local 1 // org.apache.http.io.SessionOutputBuffer out
        end local 0 // org.apache.http.impl.io.IdentityOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/http/impl/io/IdentityOutputStream;
            0    4     1   out  Lorg/apache/http/io/SessionOutputBuffer;
    MethodParameters:
      Name  Flags
      out   final

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.IdentityOutputStream this
         0: .line 70
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.closed:Z
            ifne 3
         1: .line 71
            aload 0 /* this */
            iconst_1
            putfield org.apache.http.impl.io.IdentityOutputStream.closed:Z
         2: .line 72
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.out:Lorg/apache/http/io/SessionOutputBuffer;
            invokeinterface org.apache.http.io.SessionOutputBuffer.flush:()V
         3: .line 74
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.http.impl.io.IdentityOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/http/impl/io/IdentityOutputStream;
    Exceptions:
      throws java.io.IOException

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.impl.io.IdentityOutputStream this
         0: .line 78
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.out:Lorg/apache/http/io/SessionOutputBuffer;
            invokeinterface org.apache.http.io.SessionOutputBuffer.flush:()V
         1: .line 79
            return
        end local 0 // org.apache.http.impl.io.IdentityOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/impl/io/IdentityOutputStream;
    Exceptions:
      throws java.io.IOException

  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.apache.http.impl.io.IdentityOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 83
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.closed:Z
            ifeq 2
         1: .line 84
            new java.io.IOException
            dup
            ldc "Attempted write to closed stream."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.out:Lorg/apache/http/io/SessionOutputBuffer;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokeinterface org.apache.http.io.SessionOutputBuffer.write:([BII)V
         3: .line 87
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.http.impl.io.IdentityOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/http/impl/io/IdentityOutputStream;
            0    4     1     b  [B
            0    4     2   off  I
            0    4     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
      off   final
      len   final

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.http.impl.io.IdentityOutputStream this
        start local 1 // byte[] b
         0: .line 91
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual org.apache.http.impl.io.IdentityOutputStream.write:([BII)V
         1: .line 92
            return
        end local 1 // byte[] b
        end local 0 // org.apache.http.impl.io.IdentityOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/impl/io/IdentityOutputStream;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.http.impl.io.IdentityOutputStream this
        start local 1 // int b
         0: .line 96
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.closed:Z
            ifeq 2
         1: .line 97
            new java.io.IOException
            dup
            ldc "Attempted write to closed stream."
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.impl.io.IdentityOutputStream.out:Lorg/apache/http/io/SessionOutputBuffer;
            iload 1 /* b */
            invokeinterface org.apache.http.io.SessionOutputBuffer.write:(I)V
         3: .line 100
            return
        end local 1 // int b
        end local 0 // org.apache.http.impl.io.IdentityOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/http/impl/io/IdentityOutputStream;
            0    4     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
}
SourceFile: "IdentityOutputStream.java"