Skip to content

Commit 1d092ea

Browse files
committed
Upgrade to RxJava 2.1.9, minor cleanup
1 parent 5e4121e commit 1d092ea

File tree

8 files changed

+10
-11
lines changed

8 files changed

+10
-11
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RxJava 2.x implementation of extra sources, operators and components and ports o
1313

1414
```
1515
dependencies {
16-
   compile "com.github.akarnokd:rxjava2-extensions:0.18.4"
16+
   compile "com.github.akarnokd:rxjava2-extensions:0.18.5"
1717
}
1818
```
1919

Diff for: build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ apply plugin: 'osgi'
4848
dependencies {
4949
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
5050

51-
compile "org.reactivestreams:reactive-streams:1.0.1"
52-
compile "io.reactivex.rxjava2:rxjava:2.1.8"
51+
compile "org.reactivestreams:reactive-streams:1.0.2"
52+
compile "io.reactivex.rxjava2:rxjava:2.1.9"
5353

5454
testCompile group: 'junit', name: 'junit', version: '4.12'
5555

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=0.18.4
1+
version=0.18.5

Diff for: src/main/java/hu/akarnokd/rxjava2/joins/PatternN.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ public PatternN(List<Observable<? extends Object>> observables, Observable<? ext
3737
}
3838

3939
/**
40-
* @return the number of observables in this pattern.
40+
* The number of observables in this pattern.
41+
* @return the number of observables in this pattern
4142
*/
4243
int size() {
4344
return observables.size();

Diff for: src/main/java/hu/akarnokd/rxjava2/operators/FlowableIndexOf.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ protected void subscribeActual(Subscriber<? super Long> s) {
5353

5454
static final class IndexOfSubscriber<T> extends DeferredScalarSubscriber<T, Long> {
5555

56-
/** */
5756
private static final long serialVersionUID = 4809092721669178986L;
5857

5958
final Predicate<? super T> predicate;
@@ -86,7 +85,7 @@ public void onNext(T t) {
8685
return;
8786
}
8887
}
89-
88+
9089
@Override
9190
public void onComplete() {
9291
if (!found) {

Diff for: src/main/java/hu/akarnokd/rxjava2/operators/FlowableRefCountTimeout.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
/**
3232
* A refCount implementation that allows connecting to the source after the specified
3333
* number of Subscribers subscribed and allows disconnecting after a specified
34-
* grace period
34+
* grace period.
3535
* @since 0.17.0
3636
*/
3737
final class FlowableRefCountTimeout<T> extends Flowable<T> implements FlowableTransformer<T, T> {

Diff for: src/main/java/hu/akarnokd/rxjava2/operators/FlowableSpanout.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import io.reactivex.internal.subscriptions.SubscriptionHelper;
2828

2929
/**
30-
* Makes sure there is at least the given amount of time between emissions of the upstream elements:
30+
* Makes sure there is at least the given amount of time between emissions of the upstream elements.
3131
* <pre><code>
3232
* a-b-c-d-e--f----g-|
3333
* spanout(---)

Diff for: src/main/java/hu/akarnokd/rxjava2/operators/ObservableIndexOf.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ protected void subscribeActual(Observer<? super Long> s) {
5151

5252
static final class IndexOfObserver<T> extends DeferredScalarObserver<T, Long> {
5353

54-
/** */
5554
private static final long serialVersionUID = 4809092721669178986L;
5655

5756
final Predicate<? super T> predicate;
@@ -84,7 +83,7 @@ public void onNext(T t) {
8483
return;
8584
}
8685
}
87-
86+
8887
@Override
8988
public void onComplete() {
9089
if (!found) {

0 commit comments

Comments
 (0)