public final class io.reactivex.observers.SafeObserver<T> implements io.reactivex.Observer<T>, io.reactivex.disposables.Disposable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.observers.SafeObserver
  super_class: java.lang.Object
{
  final io.reactivex.Observer<? super T> downstream;
    descriptor: Lio/reactivex/Observer;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/reactivex/Observer<-TT;>;

  io.reactivex.disposables.Disposable upstream;
    descriptor: Lio/reactivex/disposables/Disposable;
    flags: (0x0000) 

  boolean done;
    descriptor: Z
    flags: (0x0000) 

  public void <init>(io.reactivex.Observer<? super T>);
    descriptor: (Lio/reactivex/Observer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.observers.SafeObserver this
        start local 1 // io.reactivex.Observer downstream
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* downstream */
            putfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
         2: .line 42
            return
        end local 1 // io.reactivex.Observer downstream
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lio/reactivex/observers/SafeObserver<TT;>;
            0    3     1  downstream  Lio/reactivex/Observer<-TT;>;
    Signature: (Lio/reactivex/Observer<-TT;>;)V
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
            Name  Flags
      downstream  

  public void onSubscribe(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // io.reactivex.observers.SafeObserver this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 46
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            aload 1 /* d */
            invokestatic io.reactivex.internal.disposables.DisposableHelper.validate:(Lio/reactivex/disposables/Disposable;Lio/reactivex/disposables/Disposable;)Z
            ifeq 14
         1: .line 47
            aload 0 /* this */
            aload 1 /* d */
            putfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
         2: .line 49
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            aload 0 /* this */
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         3: .line 50
            goto 14
      StackMap locals:
      StackMap stack: java.lang.Throwable
         4: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         5: .line 51
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 52
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.observers.SafeObserver.done:Z
         7: .line 55
            aload 1 /* d */
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         8: .line 56
            goto 13
      StackMap locals: io.reactivex.observers.SafeObserver io.reactivex.disposables.Disposable java.lang.Throwable
      StackMap stack: java.lang.Throwable
         9: astore 3 /* e1 */
        start local 3 // java.lang.Throwable e1
        10: .line 57
            aload 3 /* e1 */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        11: .line 58
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* e */
            aastore
            dup
            iconst_1
            aload 3 /* e1 */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        12: .line 59
            return
        end local 3 // java.lang.Throwable e1
        13: .line 61
      StackMap locals:
      StackMap stack:
            aload 2 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
        14: .line 64
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/reactivex/observers/SafeObserver<TT;>;
            0   15     1     d  Lio/reactivex/disposables/Disposable;
            5   14     2     e  Ljava/lang/Throwable;
           10   13     3    e1  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
           7     8       9  Class java.lang.Throwable
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
      Name  Flags
      d     

  public void dispose();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.observers.SafeObserver this
         0: .line 68
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         1: .line 69
            return
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/observers/SafeObserver<TT;>;

  public boolean isDisposed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.observers.SafeObserver this
         0: .line 73
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            invokeinterface io.reactivex.disposables.Disposable.isDisposed:()Z
            ireturn
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/observers/SafeObserver<TT;>;

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // io.reactivex.observers.SafeObserver this
        start local 1 // java.lang.Object t
         0: .line 78
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.done:Z
            ifeq 2
         1: .line 79
            return
         2: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            ifnonnull 5
         3: .line 82
            aload 0 /* this */
            invokevirtual io.reactivex.observers.SafeObserver.onNextNoSubscription:()V
         4: .line 83
            return
         5: .line 86
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            ifnonnull 15
         6: .line 87
            new java.lang.NullPointerException
            dup
            ldc "onNext called with null. Null values are generally not allowed in 2.x operators and sources."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         7: .line 89
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
         8: .line 90
            goto 13
      StackMap locals: io.reactivex.observers.SafeObserver java.lang.Object java.lang.Throwable
      StackMap stack: java.lang.Throwable
         9: astore 3 /* e1 */
        start local 3 // java.lang.Throwable e1
        10: .line 91
            aload 3 /* e1 */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        11: .line 92
            aload 0 /* this */
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* ex */
            aastore
            dup
            iconst_1
            aload 3 /* e1 */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokevirtual io.reactivex.observers.SafeObserver.onError:(Ljava/lang/Throwable;)V
        12: .line 93
            return
        end local 3 // java.lang.Throwable e1
        13: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* ex */
            invokevirtual io.reactivex.observers.SafeObserver.onError:(Ljava/lang/Throwable;)V
        14: .line 96
            return
        end local 2 // java.lang.Throwable ex
        15: .line 100
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onNext:(Ljava/lang/Object;)V
        16: .line 101
            goto 26
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: astore 2 /* e */
        start local 2 // java.lang.Throwable e
        18: .line 102
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        19: .line 104
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            invokeinterface io.reactivex.disposables.Disposable.dispose:()V
        20: .line 105
            goto 25
      StackMap locals: io.reactivex.observers.SafeObserver java.lang.Object java.lang.Throwable
      StackMap stack: java.lang.Throwable
        21: astore 3 /* e1 */
        start local 3 // java.lang.Throwable e1
        22: .line 106
            aload 3 /* e1 */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        23: .line 107
            aload 0 /* this */
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 2 /* e */
            aastore
            dup
            iconst_1
            aload 3 /* e1 */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokevirtual io.reactivex.observers.SafeObserver.onError:(Ljava/lang/Throwable;)V
        24: .line 108
            return
        end local 3 // java.lang.Throwable e1
        25: .line 110
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* e */
            invokevirtual io.reactivex.observers.SafeObserver.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
        26: .line 112
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   27     0  this  Lio/reactivex/observers/SafeObserver<TT;>;
            0   27     1     t  TT;
            7   15     2    ex  Ljava/lang/Throwable;
           10   13     3    e1  Ljava/lang/Throwable;
           18   26     2     e  Ljava/lang/Throwable;
           22   25     3    e1  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           7     8       9  Class java.lang.Throwable
          15    16      17  Class java.lang.Throwable
          19    20      21  Class java.lang.Throwable
    Signature: (TT;)V
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
      Name  Flags
      t     

  void onNextNoSubscription();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // io.reactivex.observers.SafeObserver this
         0: .line 115
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.observers.SafeObserver.done:Z
         1: .line 117
            new java.lang.NullPointerException
            dup
            ldc "Subscription not set!"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         2: .line 120
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            getstatic io.reactivex.internal.disposables.EmptyDisposable.INSTANCE:Lio/reactivex/internal/disposables/EmptyDisposable;
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         3: .line 121
            goto 8
      StackMap locals: io.reactivex.observers.SafeObserver java.lang.Throwable
      StackMap stack: java.lang.Throwable
         4: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         5: .line 122
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         6: .line 124
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* ex */
            aastore
            dup
            iconst_1
            aload 2 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         7: .line 125
            return
        end local 2 // java.lang.Throwable e
         8: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* ex */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         9: .line 129
            goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2 /* e */
        start local 2 // java.lang.Throwable e
        11: .line 130
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        12: .line 132
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* ex */
            aastore
            dup
            iconst_1
            aload 2 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
        13: .line 134
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable ex
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Lio/reactivex/observers/SafeObserver<TT;>;
            2   14     1    ex  Ljava/lang/Throwable;
            5    8     2     e  Ljava/lang/Throwable;
           11   13     2     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable
           8     9      10  Class java.lang.Throwable

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // io.reactivex.observers.SafeObserver this
        start local 1 // java.lang.Throwable t
         0: .line 138
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.done:Z
            ifeq 3
         1: .line 139
            aload 1 /* t */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         2: .line 140
            return
         3: .line 142
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.observers.SafeObserver.done:Z
         4: .line 144
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            ifnonnull 18
         5: .line 145
            new java.lang.NullPointerException
            dup
            ldc "Subscription not set!"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 2 /* npe */
        start local 2 // java.lang.Throwable npe
         6: .line 148
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            getstatic io.reactivex.internal.disposables.EmptyDisposable.INSTANCE:Lio/reactivex/internal/disposables/EmptyDisposable;
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         7: .line 149
            goto 12
      StackMap locals: io.reactivex.observers.SafeObserver java.lang.Throwable java.lang.Throwable
      StackMap stack: java.lang.Throwable
         8: astore 3 /* e */
        start local 3 // java.lang.Throwable e
         9: .line 150
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        10: .line 152
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_3
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 2 /* npe */
            aastore
            dup
            iconst_2
            aload 3 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        11: .line 153
            return
        end local 3 // java.lang.Throwable e
        12: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 2 /* npe */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
        13: .line 157
            goto 17
      StackMap locals:
      StackMap stack: java.lang.Throwable
        14: astore 3 /* e */
        start local 3 // java.lang.Throwable e
        15: .line 158
            aload 3 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        16: .line 160
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_3
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 2 /* npe */
            aastore
            dup
            iconst_2
            aload 3 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable e
        17: .line 162
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Throwable npe
        18: .line 165
      StackMap locals:
      StackMap stack:
            aload 1 /* t */
            ifnonnull 20
        19: .line 166
            new java.lang.NullPointerException
            dup
            ldc "onError called with null. Null values are generally not allowed in 2.x operators and sources."
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 1 /* t */
        20: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* t */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
        21: .line 171
            goto 25
      StackMap locals:
      StackMap stack: java.lang.Throwable
        22: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
        23: .line 172
            aload 2 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        24: .line 174
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* t */
            aastore
            dup
            iconst_1
            aload 2 /* ex */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable ex
        25: .line 176
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Lio/reactivex/observers/SafeObserver<TT;>;
            0   26     1     t  Ljava/lang/Throwable;
            6   18     2   npe  Ljava/lang/Throwable;
            9   12     3     e  Ljava/lang/Throwable;
           15   17     3     e  Ljava/lang/Throwable;
           23   25     2    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.Throwable
          12    13      14  Class java.lang.Throwable
          20    21      22  Class java.lang.Throwable
    RuntimeInvisibleParameterAnnotations: 
      0:
        io.reactivex.annotations.NonNull()
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // io.reactivex.observers.SafeObserver this
         0: .line 180
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.done:Z
            ifeq 2
         1: .line 181
            return
         2: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.observers.SafeObserver.done:Z
         3: .line 186
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.upstream:Lio/reactivex/disposables/Disposable;
            ifnonnull 6
         4: .line 187
            aload 0 /* this */
            invokevirtual io.reactivex.observers.SafeObserver.onCompleteNoSubscription:()V
         5: .line 188
            return
         6: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            invokeinterface io.reactivex.Observer.onComplete:()V
         7: .line 193
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 1 /* e */
        start local 1 // java.lang.Throwable e
         9: .line 194
            aload 1 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        10: .line 195
            aload 1 /* e */
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable e
        11: .line 197
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lio/reactivex/observers/SafeObserver<TT;>;
            9   11     1     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.Throwable

  void onCompleteNoSubscription();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // io.reactivex.observers.SafeObserver this
         0: .line 201
            new java.lang.NullPointerException
            dup
            ldc "Subscription not set!"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            astore 1 /* ex */
        start local 1 // java.lang.Throwable ex
         1: .line 204
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            getstatic io.reactivex.internal.disposables.EmptyDisposable.INSTANCE:Lio/reactivex/internal/disposables/EmptyDisposable;
            invokeinterface io.reactivex.Observer.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         2: .line 205
            goto 7
      StackMap locals: io.reactivex.observers.SafeObserver java.lang.Throwable
      StackMap stack: java.lang.Throwable
         3: astore 2 /* e */
        start local 2 // java.lang.Throwable e
         4: .line 206
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         5: .line 208
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* ex */
            aastore
            dup
            iconst_1
            aload 2 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
         6: .line 209
            return
        end local 2 // java.lang.Throwable e
         7: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.observers.SafeObserver.downstream:Lio/reactivex/Observer;
            aload 1 /* ex */
            invokeinterface io.reactivex.Observer.onError:(Ljava/lang/Throwable;)V
         8: .line 213
            goto 12
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: astore 2 /* e */
        start local 2 // java.lang.Throwable e
        10: .line 214
            aload 2 /* e */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
        11: .line 216
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* ex */
            aastore
            dup
            iconst_1
            aload 2 /* e */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokestatic io.reactivex.plugins.RxJavaPlugins.onError:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable e
        12: .line 218
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Throwable ex
        end local 0 // io.reactivex.observers.SafeObserver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/reactivex/observers/SafeObserver<TT;>;
            1   13     1    ex  Ljava/lang/Throwable;
            4    7     2     e  Ljava/lang/Throwable;
           10   12     2     e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.Throwable
           7     8       9  Class java.lang.Throwable
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lio/reactivex/Observer<TT;>;Lio/reactivex/disposables/Disposable;
SourceFile: "SafeObserver.java"