Skip to content

Commit

Permalink
Merge pull request #2052 from davidmoten/make-class-static
Browse files Browse the repository at this point in the history
OperatorDoOnRequest.ParentSubscriber should be static class
  • Loading branch information
benjchristensen committed Dec 24, 2014
2 parents 2f821d8 + 093bbeb commit 4a08644
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void request(long n) {
return parent;
}

private final class ParentSubscriber<T> extends Subscriber<T> {
private static final class ParentSubscriber<T> extends Subscriber<T> {
private final Subscriber<? super T> child;

private ParentSubscriber(Subscriber<? super T> child) {
Expand Down

0 comments on commit 4a08644

Please sign in to comment.