You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/io/reactivex/schedulers/Schedulers.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -108,7 +108,7 @@ private Schedulers() {
108
108
* <p>
109
109
* You can control certain properties of this standard scheduler via system properties that have to be set
110
110
* before the {@link Schedulers} class is referenced in your code.
111
-
* <br><strong>Supported system properties ({@code System.getProperty()}):</strong>
111
+
* <p><strong>Supported system properties ({@code System.getProperty()}):</strong>
112
112
* <ul>
113
113
* <li>{@code rx2.computation-threads} (int): sets the number of threads in the {@link #computation()} Scheduler, default is the number of available CPUs</li>
114
114
* <li>{@code rx2.computation-priority} (int): sets the thread priority of the {@link #computation()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
@@ -153,7 +153,7 @@ public static Scheduler computation() {
153
153
* <p>
154
154
* You can control certain properties of this standard scheduler via system properties that have to be set
155
155
* before the {@link Schedulers} class is referenced in your code.
156
-
* <br><strong>Supported system properties ({@code System.getProperty()}):</strong>
156
+
* <p><strong>Supported system properties ({@code System.getProperty()}):</strong>
157
157
* <ul>
158
158
* <li>{@code rx2.io-priority} (int): sets the thread priority of the {@link #io()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
159
159
* </ul>
@@ -211,7 +211,7 @@ public static Scheduler trampoline() {
211
211
* <p>
212
212
* You can control certain properties of this standard scheduler via system properties that have to be set
213
213
* before the {@link Schedulers} class is referenced in your code.
214
-
* <br><strong>Supported system properties ({@code System.getProperty()}):</strong>
214
+
* <p><strong>Supported system properties ({@code System.getProperty()}):</strong>
215
215
* <ul>
216
216
* <li>{@code rx2.newthread-priority} (int): sets the thread priority of the {@link #newThread()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
217
217
* </ul>
@@ -260,7 +260,7 @@ public static Scheduler newThread() {
260
260
* <p>
261
261
* You can control certain properties of this standard scheduler via system properties that have to be set
262
262
* before the {@link Schedulers} class is referenced in your code.
263
-
* <br><strong>Supported system properties ({@code System.getProperty()}):</strong>
263
+
* <p><strong>Supported system properties ({@code System.getProperty()}):</strong>
264
264
* <ul>
265
265
* <li>{@code rx2.single-priority} (int): sets the thread priority of the {@link #single()} Scheduler, default is {@link Thread#NORM_PRIORITY}</li>
0 commit comments