Skip to content

Commit 4a08644

Browse files
Merge pull request #2052 from davidmoten/make-class-static
OperatorDoOnRequest.ParentSubscriber should be static class
2 parents 2f821d8 + 093bbeb commit 4a08644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void request(long n) {
5252
return parent;
5353
}
5454

55-
private final class ParentSubscriber<T> extends Subscriber<T> {
55+
private static final class ParentSubscriber<T> extends Subscriber<T> {
5656
private final Subscriber<? super T> child;
5757

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

0 commit comments

Comments
 (0)