Skip to content

Commit fb58b1c

Browse files
author
Klemen Kresnik
committed
Missing white spaces.
1 parent 6593345 commit fb58b1c

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

src/main/java/rx/Single.java

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ public static <T> Observable<T> merge(Single<? extends T> t1, Single<? extends T
867867
* <dt><b>Scheduler:</b></dt>
868868
* <dd>{@code merge} does not operate by default on a particular {@link Scheduler}.</dd>
869869
* </dl>
870-
*
870+
*
871871
* @param t1
872872
* a Single to be merged
873873
* @param t2
@@ -902,7 +902,7 @@ public static <T> Observable<T> merge(Single<? extends T> t1, Single<? extends T
902902
* <dt><b>Scheduler:</b></dt>
903903
* <dd>{@code merge} does not operate by default on a particular {@link Scheduler}.</dd>
904904
* </dl>
905-
*
905+
*
906906
* @param t1
907907
* a Single to be merged
908908
* @param t2
@@ -937,7 +937,7 @@ public static <T> Observable<T> merge(Single<? extends T> t1, Single<? extends T
937937
* <dt><b>Scheduler:</b></dt>
938938
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
939939
* </dl>
940-
*
940+
*
941941
* @param s1
942942
* the first source Single
943943
* @param s2
@@ -966,7 +966,7 @@ public R call(Object... args) {
966966
* <dt><b>Scheduler:</b></dt>
967967
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
968968
* </dl>
969-
*
969+
*
970970
* @param s1
971971
* the first source Single
972972
* @param s2
@@ -997,7 +997,7 @@ public R call(Object... args) {
997997
* <dt><b>Scheduler:</b></dt>
998998
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
999999
* </dl>
1000-
*
1000+
*
10011001
* @param s1
10021002
* the first source Single
10031003
* @param s2
@@ -1030,7 +1030,7 @@ public R call(Object... args) {
10301030
* <dt><b>Scheduler:</b></dt>
10311031
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
10321032
* </dl>
1033-
*
1033+
*
10341034
* @param s1
10351035
* the first source Single
10361036
* @param s2
@@ -1065,7 +1065,7 @@ public R call(Object... args) {
10651065
* <dt><b>Scheduler:</b></dt>
10661066
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
10671067
* </dl>
1068-
*
1068+
*
10691069
* @param s1
10701070
* the first source Single
10711071
* @param s2
@@ -1103,7 +1103,7 @@ public R call(Object... args) {
11031103
* <dt><b>Scheduler:</b></dt>
11041104
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
11051105
* </dl>
1106-
*
1106+
*
11071107
* @param s1
11081108
* the first source Single
11091109
* @param s2
@@ -1143,7 +1143,7 @@ public R call(Object... args) {
11431143
* <dt><b>Scheduler:</b></dt>
11441144
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
11451145
* </dl>
1146-
*
1146+
*
11471147
* @param s1
11481148
* the first source Single
11491149
* @param s2
@@ -1185,7 +1185,7 @@ public R call(Object... args) {
11851185
* <dt><b>Scheduler:</b></dt>
11861186
* <dd>{@code zip} does not operate by default on a particular {@link Scheduler}.</dd>
11871187
* </dl>
1188-
*
1188+
*
11891189
* @param s1
11901190
* the first source Single
11911191
* @param s2
@@ -1253,7 +1253,7 @@ public static <R> Single<R> zip(Iterable<? extends Single<?>> singles, FuncN<? e
12531253
* <dt><b>Scheduler:</b></dt>
12541254
* <dd>{@code concat} does not operate by default on a particular {@link Scheduler}.</dd>
12551255
* </dl>
1256-
*
1256+
*
12571257
* @param t1
12581258
* a Single to be concatenated after the current
12591259
* @return an Observable that emits the item emitted by the source Single, followed by the item emitted by
@@ -1273,7 +1273,7 @@ public final Observable<T> concatWith(Single<? extends T> t1) {
12731273
* <dt><b>Scheduler:</b></dt>
12741274
* <dd>{@code flatMap} does not operate by default on a particular {@link Scheduler}.</dd>
12751275
* </dl>
1276-
*
1276+
*
12771277
* @param func
12781278
* a function that, when applied to the item emitted by the source Single, returns a Single
12791279
* @return the Single returned from {@code func} when applied to the item emitted by the source Single
@@ -1295,7 +1295,7 @@ public final <R> Single<R> flatMap(final Func1<? super T, ? extends Single<? ext
12951295
* <dt><b>Scheduler:</b></dt>
12961296
* <dd>{@code flatMapObservable} does not operate by default on a particular {@link Scheduler}.</dd>
12971297
* </dl>
1298-
*
1298+
*
12991299
* @param func
13001300
* a function that, when applied to the item emitted by the source Single, returns an
13011301
* Observable
@@ -1336,7 +1336,7 @@ public final <R> Single<R> map(Func1<? super T, ? extends R> func) {
13361336
* <dt><b>Scheduler:</b></dt>
13371337
* <dd>{@code mergeWith} does not operate by default on a particular {@link Scheduler}.</dd>
13381338
* </dl>
1339-
*
1339+
*
13401340
* @param t1
13411341
* a Single to be merged
13421342
* @return an Observable that emits all of the items emitted by the source Singles
@@ -1355,7 +1355,7 @@ public final Observable<T> mergeWith(Single<? extends T> t1) {
13551355
* <dt><b>Scheduler:</b></dt>
13561356
* <dd>you specify which {@link Scheduler} this operator will use</dd>
13571357
* </dl>
1358-
*
1358+
*
13591359
* @param scheduler
13601360
* the {@link Scheduler} to notify subscribers on
13611361
* @return the source Single modified so that its subscribers are notified on the specified
@@ -1390,7 +1390,7 @@ public final Single<T> observeOn(Scheduler scheduler) {
13901390
* <dt><b>Scheduler:</b></dt>
13911391
* <dd>{@code onErrorReturn} does not operate by default on a particular {@link Scheduler}.</dd>
13921392
* </dl>
1393-
*
1393+
*
13941394
* @param resumeFunction
13951395
* a function that returns an item that the new Single will emit if the source Single encounters
13961396
* an error
@@ -1438,7 +1438,7 @@ public final Single<T> onErrorResumeNext(Single<? extends T> resumeSingleInCaseO
14381438
* <dt><b>Scheduler:</b></dt>
14391439
* <dd>{@code subscribe} does not operate by default on a particular {@link Scheduler}.</dd>
14401440
* </dl>
1441-
*
1441+
*
14421442
* @return a {@link Subscription} reference can request the {@link Single} stop work.
14431443
* @throws OnErrorNotImplementedException
14441444
* if the Single tries to call {@link Subscriber#onError}
@@ -1471,7 +1471,7 @@ public final void onNext(T args) {
14711471
* <dt><b>Scheduler:</b></dt>
14721472
* <dd>{@code subscribe} does not operate by default on a particular {@link Scheduler}.</dd>
14731473
* </dl>
1474-
*
1474+
*
14751475
* @param onSuccess
14761476
* the {@code Action1<T>} you have designed to accept the emission from the Single
14771477
* @return a {@link Subscription} reference can request the {@link Single} stop work.
@@ -1513,7 +1513,7 @@ public final void onNext(T args) {
15131513
* <dt><b>Scheduler:</b></dt>
15141514
* <dd>{@code subscribe} does not operate by default on a particular {@link Scheduler}.</dd>
15151515
* </dl>
1516-
*
1516+
*
15171517
* @param onSuccess
15181518
* the {@code Action1<T>} you have designed to accept the emission from the Single
15191519
* @param onError
@@ -1563,7 +1563,7 @@ public final void onNext(T args) {
15631563
* <dt><b>Scheduler:</b></dt>
15641564
* <dd>{@code unsafeSubscribe} does not operate by default on a particular {@link Scheduler}.</dd>
15651565
* </dl>
1566-
*
1566+
*
15671567
* @param subscriber
15681568
* the Subscriber that will handle the emission or notification from the Single
15691569
*/
@@ -1615,7 +1615,7 @@ public final void unsafeSubscribe(Subscriber<? super T> subscriber) {
16151615
* <dt><b>Scheduler:</b></dt>
16161616
* <dd>{@code subscribe} does not operate by default on a particular {@link Scheduler}.</dd>
16171617
* </dl>
1618-
*
1618+
*
16191619
* @param subscriber
16201620
* the {@link Subscriber} that will handle the emission or notification from the Single
16211621
* @return a {@link Subscription} reference can request the {@link Single} stop work.
@@ -1703,7 +1703,7 @@ public final Subscription subscribe(Subscriber<? super T> subscriber) {
17031703
* <dt><b>Scheduler:</b></dt>
17041704
* <dd>{@code subscribe} does not operate by default on a particular {@link Scheduler}.</dd>
17051705
* </dl>
1706-
*
1706+
*
17071707
* @param te
17081708
* the {@link SingleSubscriber} that will handle the emission or notification from the Single
17091709
* @return a {@link Subscription} reference can request the {@link Single} stop work.
@@ -1749,7 +1749,7 @@ public void onNext(T t) {
17491749
* <dt><b>Scheduler:</b></dt>
17501750
* <dd>you specify which {@link Scheduler} this operator will use</dd>
17511751
* </dl>
1752-
*
1752+
*
17531753
* @param scheduler
17541754
* the {@link Scheduler} to perform subscription actions on
17551755
* @return the source Single modified so that its subscriptions happen on the specified {@link Scheduler}
@@ -1798,12 +1798,12 @@ public void onError(Throwable error) {
17981798
}
17991799
});
18001800
}
1801-
1801+
18021802
/**
18031803
* Converts this Single into an {@link Observable}.
18041804
* <p>
18051805
* <img width="640" height="305" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/Single.toObservable.png" alt="">
1806-
*
1806+
*
18071807
* @return an {@link Observable} that emits a single item T.
18081808
*/
18091809
public final Observable<T> toObservable() {
@@ -1820,7 +1820,7 @@ public final Observable<T> toObservable() {
18201820
* <dt><b>Scheduler:</b></dt>
18211821
* <dd>This version of {@code timeout} operates by default on the {@code computation} {@link Scheduler}.</dd>
18221822
* </dl>
1823-
*
1823+
*
18241824
* @param timeout
18251825
* maximum duration before the Single times out
18261826
* @param timeUnit
@@ -1843,7 +1843,7 @@ public final Single<T> timeout(long timeout, TimeUnit timeUnit) {
18431843
* <dt><b>Scheduler:</b></dt>
18441844
* <dd>you specify which {@link Scheduler} this operator will use</dd>
18451845
* </dl>
1846-
*
1846+
*
18471847
* @param timeout
18481848
* maximum duration before the Single times out
18491849
* @param timeUnit
@@ -1868,7 +1868,7 @@ public final Single<T> timeout(long timeout, TimeUnit timeUnit, Scheduler schedu
18681868
* <dt><b>Scheduler:</b></dt>
18691869
* <dd>This version of {@code timeout} operates by default on the {@code computation} {@link Scheduler}.</dd>
18701870
* </dl>
1871-
*
1871+
*
18721872
* @param timeout
18731873
* maximum time before a timeout occurs
18741874
* @param timeUnit
@@ -1892,7 +1892,7 @@ public final Single<T> timeout(long timeout, TimeUnit timeUnit, Single<? extends
18921892
* <dt><b>Scheduler:</b></dt>
18931893
* <dd>you specify which {@link Scheduler} this operator will use</dd>
18941894
* </dl>
1895-
*
1895+
*
18961896
* @param timeout
18971897
* maximum duration before a timeout occurs
18981898
* @param timeUnit
@@ -1935,7 +1935,7 @@ public final BlockingSingle<T> toBlocking() {
19351935
* <dt><b>Scheduler:</b></dt>
19361936
* <dd>{@code zipWith} does not operate by default on a particular {@link Scheduler}.</dd>
19371937
* </dl>
1938-
*
1938+
*
19391939
* @param <T2>
19401940
* the type of items emitted by the {@code other} Single
19411941
* @param <R>
@@ -1989,7 +1989,7 @@ public void onNext(T t) {
19891989

19901990
return lift(new OperatorDoOnEach<T>(observer));
19911991
}
1992-
1992+
19931993
/**
19941994
* Modifies the source {@link Single} so that it invokes an action when it calls {@code onSuccess}.
19951995
* <p>

0 commit comments

Comments
 (0)