Skip to content

Commit 80d9b90

Browse files
authored
2.x: enable link to external JDK, fix Schedulers style (ReactiveX#5271)
1 parent 879d60f commit 80d9b90

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ javadoc {
4747
options.addStringOption('top').value = ''
4848
options.addStringOption('doctitle').value = ''
4949
options.addStringOption('header').value = ''
50+
options.links("http://docs.oracle.com/javase/7/docs/api/")
5051
if (JavaVersion.current().isJava7()) {
5152
// "./gradle/stylesheet.css" only supports Java 7
5253
options.addStringOption('stylesheetfile', rootProject.file('./gradle/stylesheet.css').toString())

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private Schedulers() {
108108
* <p>
109109
* You can control certain properties of this standard scheduler via system properties that have to be set
110110
* 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>
112112
* <ul>
113113
* <li>{@code rx2.computation-threads} (int): sets the number of threads in the {@link #computation()} Scheduler, default is the number of available CPUs</li>
114114
* <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() {
153153
* <p>
154154
* You can control certain properties of this standard scheduler via system properties that have to be set
155155
* 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>
157157
* <ul>
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>
@@ -211,7 +211,7 @@ public static Scheduler trampoline() {
211211
* <p>
212212
* You can control certain properties of this standard scheduler via system properties that have to be set
213213
* 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>
215215
* <ul>
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>
@@ -260,7 +260,7 @@ public static Scheduler newThread() {
260260
* <p>
261261
* You can control certain properties of this standard scheduler via system properties that have to be set
262262
* 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>
264264
* <ul>
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>

0 commit comments

Comments
 (0)