diff --git a/build.gradle b/build.gradle index ce96b1baef..12a5b04978 100644 --- a/build.gradle +++ b/build.gradle @@ -91,8 +91,10 @@ javadoc { options.addStringOption("doctitle").value = "" options.addStringOption("header").value = "" - options.links("http://docs.oracle.com/javase/7/docs/api/") - options.links("http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/") + options.links( + "https://docs.oracle.com/javase/7/docs/api/", + "http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/" + ) if (JavaVersion.current().isJava7()) { // "./gradle/stylesheet.css" only supports Java 7 diff --git a/src/main/java/io/reactivex/CompletableObserver.java b/src/main/java/io/reactivex/CompletableObserver.java index a33a479128..eac7c9436b 100644 --- a/src/main/java/io/reactivex/CompletableObserver.java +++ b/src/main/java/io/reactivex/CompletableObserver.java @@ -28,7 +28,6 @@ * Calling the {@code CompletableObserver}'s method must happen in a serialized fashion, that is, they must not * be invoked concurrently by multiple threads in an overlapping fashion and the invocation pattern must * adhere to the following protocol: - *

*

    onSubscribe (onError | onComplete)?
*

* Subscribing a {@code CompletableObserver} to multiple {@code CompletableSource}s is not recommended. If such reuse diff --git a/src/main/java/io/reactivex/MaybeObserver.java b/src/main/java/io/reactivex/MaybeObserver.java index d2f4792245..76784484f1 100644 --- a/src/main/java/io/reactivex/MaybeObserver.java +++ b/src/main/java/io/reactivex/MaybeObserver.java @@ -28,7 +28,6 @@ * Calling the {@code MaybeObserver}'s method must happen in a serialized fashion, that is, they must not * be invoked concurrently by multiple threads in an overlapping fashion and the invocation pattern must * adhere to the following protocol: - *

*

    onSubscribe (onSuccess | onError | onComplete)?
*

* Note that unlike with the {@code Observable} protocol, {@link #onComplete()} is not called after the success item has been diff --git a/src/main/java/io/reactivex/Observer.java b/src/main/java/io/reactivex/Observer.java index cc3e62a573..4c446e67fb 100644 --- a/src/main/java/io/reactivex/Observer.java +++ b/src/main/java/io/reactivex/Observer.java @@ -30,7 +30,6 @@ * Calling the {@code Observer}'s method must happen in a serialized fashion, that is, they must not * be invoked concurrently by multiple threads in an overlapping fashion and the invocation pattern must * adhere to the following protocol: - *

*

    onSubscribe onNext* (onError | onComplete)?
*

* Subscribing an {@code Observer} to multiple {@code ObservableSource}s is not recommended. If such reuse diff --git a/src/main/java/io/reactivex/SingleObserver.java b/src/main/java/io/reactivex/SingleObserver.java index ed8adf58c7..6fefe167a8 100644 --- a/src/main/java/io/reactivex/SingleObserver.java +++ b/src/main/java/io/reactivex/SingleObserver.java @@ -28,7 +28,6 @@ * Calling the {@code SingleObserver}'s method must happen in a serialized fashion, that is, they must not * be invoked concurrently by multiple threads in an overlapping fashion and the invocation pattern must * adhere to the following protocol: - *

*

    onSubscribe (onSuccess | onError)?
*

* Subscribing a {@code SingleObserver} to multiple {@code SingleSource}s is not recommended. If such reuse