Skip to content

Commit 5ab2083

Browse files
smartbengakarnokd
authored andcommitted
2.x: add/remove empty lines in ConnectableObservable and Observable (#5288)
* Multiple lines * Less line of space
1 parent 2abeadb commit 5ab2083

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/main/java/io/reactivex/Observable.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ public static <T, R> Observable<R> combineLatest(Iterable<? extends ObservableSo
203203
return combineLatest(sources, combiner, bufferSize());
204204
}
205205

206-
207206
/**
208207
* Combines a collection of source ObservableSources by emitting an item that aggregates the latest values of each of
209208
* the source ObservableSources each time an item is received from any of the source ObservableSources, where this

src/main/java/io/reactivex/observables/ConnectableObservable.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ public Observable<T> refCount() {
8787
public Observable<T> autoConnect() {
8888
return autoConnect(1);
8989
}
90+
9091
/**
9192
* Returns an Observable that automatically connects to this ConnectableObservable
9293
* when the specified number of Observers subscribe to it.

0 commit comments

Comments
 (0)