File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -93,15 +93,15 @@ public void call(CompletableSubscriber s) {
93
93
s .onSubscribe (Subscriptions .unsubscribed ());
94
94
s .onCompleted ();
95
95
}
96
- }, true ); // hook is handled in complete()
96
+ }, false ); // hook is handled in complete()
97
97
98
98
/** Single instance of a never Completable. */
99
99
static final Completable NEVER = new Completable (new CompletableOnSubscribe () {
100
100
@ Override
101
101
public void call (CompletableSubscriber s ) {
102
102
s .onSubscribe (Subscriptions .unsubscribed ());
103
103
}
104
- }, true ); // hook is handled in never()
104
+ }, false ); // hook is handled in never()
105
105
106
106
/**
107
107
* Returns a Completable which terminates as soon as one of the source Completables
@@ -315,7 +315,7 @@ public static Completable complete() {
315
315
if (cos == COMPLETE .onSubscribe ) {
316
316
return COMPLETE ;
317
317
}
318
- return new Completable (cos , true );
318
+ return new Completable (cos , false );
319
319
}
320
320
321
321
/**
@@ -742,7 +742,7 @@ public static Completable never() {
742
742
if (cos == NEVER .onSubscribe ) {
743
743
return NEVER ;
744
744
}
745
- return new Completable (cos , true );
745
+ return new Completable (cos , false );
746
746
}
747
747
748
748
/**
You can’t perform that action at this time.
0 commit comments