We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07eab08 commit a56f78bCopy full SHA for a56f78b
src/main/java/rx/internal/operators/OnSubscribeRedo.java
@@ -399,7 +399,7 @@ public void request(long n) {
399
}
400
401
402
- public void setProducer(Producer p) {
+ void setProducer(Producer p) {
403
if (p == null) {
404
throw new NullPointerException();
405
@@ -432,7 +432,7 @@ public void setProducer(Producer p) {
432
433
434
435
- public void produced(long n) {
+ void produced(long n) {
436
if (n <= 0) {
437
throw new IllegalArgumentException(n + " produced?!");
438
0 commit comments