Skip to content

Commit cd258e3

Browse files
committed
2.x: Fix whitespaces
1 parent 41cfbf6 commit cd258e3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/io/reactivex/schedulers/Schedulers.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private Schedulers() {
114114
* <li>{@code rx2.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
115115
* </ul>
116116
* <p>
117-
* The default value of this scheduler can be overridden at initialization time via the
117+
* The default value of this scheduler can be overridden at initialization time via the
118118
* {@link RxJavaPlugins#setInitComputationSchedulerHandler(io.reactivex.functions.Function)} plugin method.
119119
* Note that due to possible initialization cycles, using any of the other scheduler-returning methods will
120120
* result in a {@code NullPointerException}.
@@ -144,7 +144,7 @@ public static Scheduler computation() {
144144
* that will try to reuse previoulsy started instances used by the worker
145145
* returned by {@link io.reactivex.Scheduler#createWorker()} but otherwise will start a new backing
146146
* {link ScheduledExecutorService} instance. Note that this scheduler may create an unbounded number
147-
* of worker threads that can result in system slowdowns or {@code OutOfMemoryError}. Therefore, for casual uses
147+
* of worker threads that can result in system slowdowns or {@code OutOfMemoryError}. Therefore, for casual uses
148148
* or when implementing an operator, the Worker instances must be disposed via {@link io.reactivex.Scheduler.Worker#dispose()}.
149149
* <p>
150150
* It is not recommended to perform computational work on this scheduler. Use {@link #computation()} instead.
@@ -158,7 +158,7 @@ public static Scheduler computation() {
158158
* <li>{@code rx2.io-priority} (int): sets the thread priority of the {@link #io()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
159159
* </ul>
160160
* <p>
161-
* The default value of this scheduler can be overridden at initialization time via the
161+
* The default value of this scheduler can be overridden at initialization time via the
162162
* {@link RxJavaPlugins#setInitIoSchedulerHandler(io.reactivex.functions.Function)} plugin method.
163163
* Note that due to possible initialization cycles, using any of the other scheduler-returning methods will
164164
* result in a {@code NullPointerException}.
@@ -203,7 +203,7 @@ public static Scheduler trampoline() {
203203
* <p>
204204
* The default implementation of this scheduler creates a new, single-threaded {@link ScheduledExecutorService} for
205205
* each invocation of the {@link Scheduler#scheduleDirect(Runnable)} (plus its overloads) and {@link Scheduler#createWorker()}
206-
* methods, thus an unbounded number of worker threads may be created that can
206+
* methods, thus an unbounded number of worker threads may be created that can
207207
* result in system slowdowns or {@code OutOfMemoryError}. Therefore, for casual uses or when implementing an operator,
208208
* the Worker instances must be disposed via {@link io.reactivex.Scheduler.Worker#dispose()}.
209209
* <p>
@@ -216,7 +216,7 @@ public static Scheduler trampoline() {
216216
* <li>{@code rx2.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
217217
* </ul>
218218
* <p>
219-
* The default value of this scheduler can be overridden at initialization time via the
219+
* The default value of this scheduler can be overridden at initialization time via the
220220
* {@link RxJavaPlugins#setInitNewThreadSchedulerHandler(io.reactivex.functions.Function)} plugin method.
221221
* Note that due to possible initialization cycles, using any of the other scheduler-returning methods will
222222
* result in a {@code NullPointerException}.
@@ -265,7 +265,7 @@ public static Scheduler newThread() {
265265
* <li>{@code rx2.single-priority} (int): sets the thread priority of the {@link #single()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
266266
* </ul>
267267
* <p>
268-
* The default value of this scheduler can be overridden at initialization time via the
268+
* The default value of this scheduler can be overridden at initialization time via the
269269
* {@link RxJavaPlugins#setInitSingleSchedulerHandler(io.reactivex.functions.Function)} plugin method.
270270
* Note that due to possible initialization cycles, using any of the other scheduler-returning methods will
271271
* result in a {@code NullPointerException}.

0 commit comments

Comments
 (0)