Skip to content

Commit a56f78b

Browse files
committed
reduce visibility to default on methods
1 parent 07eab08 commit a56f78b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/rx/internal/operators/OnSubscribeRedo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ public void request(long n) {
399399
}
400400
}
401401
}
402-
public void setProducer(Producer p) {
402+
void setProducer(Producer p) {
403403
if (p == null) {
404404
throw new NullPointerException();
405405
}
@@ -432,7 +432,7 @@ public void setProducer(Producer p) {
432432
}
433433
}
434434
}
435-
public void produced(long n) {
435+
void produced(long n) {
436436
if (n <= 0) {
437437
throw new IllegalArgumentException(n + " produced?!");
438438
}

0 commit comments

Comments
 (0)