Skip to content

Commit 860e39e

Browse files
authored
2.x: improve wording and links in package-infos + remove unused imports (#5746)
* 2.x: improve wording and links in package-infos * Remove unused imports
1 parent 5f1542b commit 860e39e

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

src/main/java/io/reactivex/flowables/package-info.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
*/
1616

1717
/**
18-
* Classes supporting the Flowable base reactive class: connectable and grouped
19-
* flowables.
18+
* Classes supporting the Flowable base reactive class:
19+
* {@link io.reactivex.flowables.ConnectableFlowable} and
20+
* {@link io.reactivex.flowables.GroupedFlowable}.
2021
*/
2122
package io.reactivex.flowables;

src/main/java/io/reactivex/internal/operators/single/SingleFromCallable.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import io.reactivex.disposables.Disposable;
2020
import io.reactivex.disposables.Disposables;
2121
import io.reactivex.exceptions.Exceptions;
22-
import io.reactivex.internal.disposables.EmptyDisposable;
2322
import io.reactivex.internal.functions.ObjectHelper;
2423
import io.reactivex.plugins.RxJavaPlugins;
2524

src/main/java/io/reactivex/observables/package-info.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
*/
1616

1717
/**
18-
* Classes supporting the Observable base reactive class: connectable and grouped
19-
* observables.
18+
* Classes supporting the Observable base reactive class:
19+
* {@link io.reactivex.observable.ConnectableObservable} and
20+
* {@link io.reactivex.observable.GroupedObservable}.
2021
*/
2122
package io.reactivex.observables;

src/main/java/io/reactivex/package-info.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
* limitations under the License.
1515
*/
1616
/**
17-
* Base reactive classes: Flowable, Observable, Single, Maybe and Completable; base reactive consumers;
17+
* Base reactive classes: {@link io.reactivex.Flowable}, {@link io.reactivex.Observable},
18+
* {@link io.reactivex.Single}, {@link io.reactivex.Maybe} and
19+
* {@link io.reactivex.Completable}; base reactive consumers;
1820
* other common base interfaces.
1921
*
2022
* <p>A library that enables subscribing to and composing asynchronous events and

src/main/java/io/reactivex/parallel/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/**
18-
* Base type for the parallel type offering a sub-DSL for working with Flowable items
19-
* in parallel.
18+
* Contains the base type {@link io.reactivex.parallel.ParallelFlowable},
19+
* a sub-DSL for working with {@link io.reactivex.Flowable} sequences in parallel.
2020
*/
2121
package io.reactivex.parallel;

src/main/java/io/reactivex/plugins/package-info.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/**
18-
* Callback types and a central plugin handler class to hook into the lifecycle
19-
* of the base reactive types and schedulers.
18+
* Contains the central plugin handler {@link io.reactivex.plugins.RxJavaPlugins}
19+
* class to hook into the lifecycle of the base reactive types and schedulers.
2020
*/
2121
package io.reactivex.plugins;

src/test/java/io/reactivex/internal/operators/completable/CompletableFromCallableTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import java.util.concurrent.CountDownLatch;
1919
import java.util.concurrent.atomic.AtomicInteger;
2020

21-
import io.reactivex.Observable;
2221
import io.reactivex.Observer;
2322
import io.reactivex.TestHelper;
2423
import io.reactivex.disposables.Disposable;

0 commit comments

Comments
 (0)