class org.apache.http.client.entity.LazyDecompressingInputStream extends java.io.InputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.http.client.entity.LazyDecompressingInputStream
  super_class: java.io.InputStream
{
  private final java.io.InputStream wrappedStream;
    descriptor: Ljava/io/InputStream;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.http.client.entity.InputStreamFactory inputStreamFactory;
    descriptor: Lorg/apache/http/client/entity/InputStreamFactory;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.io.InputStream wrapperStream;
    descriptor: Ljava/io/InputStream;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.InputStream, org.apache.http.client.entity.InputStreamFactory);
    descriptor: (Ljava/io/InputStream;Lorg/apache/http/client/entity/InputStreamFactory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
        start local 1 // java.io.InputStream wrappedStream
        start local 2 // org.apache.http.client.entity.InputStreamFactory inputStreamFactory
         0: .line 42
            aload 0 /* this */
            invokespecial java.io.InputStream.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* wrappedStream */
            putfield org.apache.http.client.entity.LazyDecompressingInputStream.wrappedStream:Ljava/io/InputStream;
         2: .line 46
            aload 0 /* this */
            aload 2 /* inputStreamFactory */
            putfield org.apache.http.client.entity.LazyDecompressingInputStream.inputStreamFactory:Lorg/apache/http/client/entity/InputStreamFactory;
         3: .line 47
            return
        end local 2 // org.apache.http.client.entity.InputStreamFactory inputStreamFactory
        end local 1 // java.io.InputStream wrappedStream
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    4     0                this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
            0    4     1       wrappedStream  Ljava/io/InputStream;
            0    4     2  inputStreamFactory  Lorg/apache/http/client/entity/InputStreamFactory;
    MethodParameters:
                    Name  Flags
      wrappedStream       final
      inputStreamFactory  final

  private void initWrapper();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
         0: .line 50
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            ifnonnull 2
         1: .line 51
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.inputStreamFactory:Lorg/apache/http/client/entity/InputStreamFactory;
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrappedStream:Ljava/io/InputStream;
            invokeinterface org.apache.http.client.entity.InputStreamFactory.create:(Ljava/io/InputStream;)Ljava/io/InputStream;
            putfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
         2: .line 53
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
    Exceptions:
      throws java.io.IOException

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
         0: .line 57
            aload 0 /* this */
            invokevirtual org.apache.http.client.entity.LazyDecompressingInputStream.initWrapper:()V
         1: .line 58
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.read:()I
            ireturn
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
    Exceptions:
      throws java.io.IOException

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
        start local 1 // byte[] b
         0: .line 63
            aload 0 /* this */
            invokevirtual org.apache.http.client.entity.LazyDecompressingInputStream.initWrapper:()V
         1: .line 64
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            aload 1 /* b */
            invokevirtual java.io.InputStream.read:([B)I
            ireturn
        end local 1 // byte[] b
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 69
            aload 0 /* this */
            invokevirtual org.apache.http.client.entity.LazyDecompressingInputStream.initWrapper:()V
         1: .line 70
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.InputStream.read:([BII)I
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
            0    2     1     b  [B
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     final
      off   final
      len   final

  public long skip(long);
    descriptor: (J)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
        start local 1 // long n
         0: .line 75
            aload 0 /* this */
            invokevirtual org.apache.http.client.entity.LazyDecompressingInputStream.initWrapper:()V
         1: .line 76
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            lload 1 /* n */
            invokevirtual java.io.InputStream.skip:(J)J
            lreturn
        end local 1 // long n
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
            0    2     1     n  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     final

  public boolean markSupported();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
         0: .line 81
            iconst_0
            ireturn
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;

  public int available();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
         0: .line 86
            aload 0 /* this */
            invokevirtual org.apache.http.client.entity.LazyDecompressingInputStream.initWrapper:()V
         1: .line 87
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.available:()I
            ireturn
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
         0: .line 93
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            ifnull 6
         1: .line 94
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrapperStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         2: .line 96
            goto 6
      StackMap locals:
      StackMap stack: java.lang.Throwable
         3: astore 1
         4: .line 97
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrappedStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         5: .line 98
            aload 1
            athrow
         6: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.http.client.entity.LazyDecompressingInputStream.wrappedStream:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         7: .line 99
            return
        end local 0 // org.apache.http.client.entity.LazyDecompressingInputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/http/client/entity/LazyDecompressingInputStream;
      Exception table:
        from    to  target  type
           0     3       3  any
    Exceptions:
      throws java.io.IOException
}
SourceFile: "LazyDecompressingInputStream.java"