File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
rxjava-core/src/main/java/rx/operators Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public Subscription onSubscribe(Observer<? super T> t1) {
42
42
return new ResultManager (t1 ).init ();
43
43
}
44
44
/** Manage the source and other observers. */
45
- class ResultManager implements Subscription , Observer <T > {
45
+ private class ResultManager implements Subscription , Observer <T > {
46
46
final Observer <? super T > observer ;
47
47
final CompositeSubscription cancel ;
48
48
final Object guard = new Object ();
@@ -94,7 +94,7 @@ public void onCompleted() {
94
94
}
95
95
96
96
/** Observe the other stream. */
97
- class OtherObserver implements Observer <U > {
97
+ private class OtherObserver implements Observer <U > {
98
98
final Subscription self ;
99
99
public OtherObserver (Subscription self ) {
100
100
this .self = self ;
You can’t perform that action at this time.
0 commit comments