Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void subscribe(CoreSubscriber<? super T> destination) {
}

destination.onSubscribe(new InnerSubscription());
source.subscribe(new InnerSubscriber<>(destination));
source.subscribe(new InnerSubscriber(destination));
}

public void increaseRequestLimit(long n) {
Expand Down Expand Up @@ -100,10 +100,10 @@ public void cancel() {
}
}

private class InnerSubscriber<T> implements Subscriber<T> {
private class InnerSubscriber implements Subscriber<T> {
Subscriber<? super T> destination;

public InnerSubscriber(Subscriber<? super T> destination) {
private InnerSubscriber(Subscriber<? super T> destination) {
this.destination = destination;
}

Expand Down