Skip to content

Commit b11b30a

Browse files
committed
Inner classes set to private
1 parent cdf7ee7 commit b11b30a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rxjava-core/src/main/java/rx/operators/OperationSkipUntil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public Subscription onSubscribe(Observer<? super T> t1) {
4242
return new ResultManager(t1).init();
4343
}
4444
/** Manage the source and other observers. */
45-
class ResultManager implements Subscription, Observer<T> {
45+
private class ResultManager implements Subscription, Observer<T> {
4646
final Observer<? super T> observer;
4747
final CompositeSubscription cancel;
4848
final Object guard = new Object();
@@ -94,7 +94,7 @@ public void onCompleted() {
9494
}
9595

9696
/** Observe the other stream. */
97-
class OtherObserver implements Observer<U> {
97+
private class OtherObserver implements Observer<U> {
9898
final Subscription self;
9999
public OtherObserver(Subscription self) {
100100
this.self = self;

0 commit comments

Comments
 (0)