Skip to content

Commit 093bbeb

Browse files
committed
OperatorDoOnRequest.ParentSubscriber should be static class
1 parent 7c408f4 commit 093bbeb

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)