Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.x: improve wording and links in package-infos + remove unused imports #5746

Merged
merged 2 commits into from
Nov 29, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/java/io/reactivex/flowables/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
*/

/**
* Classes supporting the Flowable base reactive class: connectable and grouped
* flowables.
* Classes supporting the Flowable base reactive class:
* {@link io.reactivex.flowables.ConnectableFlowable} and
* {@link io.reactivex.flowables.GroupedFlowable}.
*/
package io.reactivex.flowables;
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import io.reactivex.disposables.Disposable;
import io.reactivex.disposables.Disposables;
import io.reactivex.exceptions.Exceptions;
import io.reactivex.internal.disposables.EmptyDisposable;
import io.reactivex.internal.functions.ObjectHelper;
import io.reactivex.plugins.RxJavaPlugins;

Expand Down
5 changes: 3 additions & 2 deletions src/main/java/io/reactivex/observables/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
*/

/**
* Classes supporting the Observable base reactive class: connectable and grouped
* observables.
* Classes supporting the Observable base reactive class:
* {@link io.reactivex.observable.ConnectableObservable} and
* {@link io.reactivex.observable.GroupedObservable}.
*/
package io.reactivex.observables;
4 changes: 3 additions & 1 deletion src/main/java/io/reactivex/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
* limitations under the License.
*/
/**
* Base reactive classes: Flowable, Observable, Single, Maybe and Completable; base reactive consumers;
* Base reactive classes: {@link io.reactivex.Flowable}, {@link io.reactivex.Observable},
* {@link io.reactivex.Single}, {@link io.reactivex.Maybe} and
* {@link io.reactivex.Completable}; base reactive consumers;
* other common base interfaces.
*
* <p>A library that enables subscribing to and composing asynchronous events and
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/parallel/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Base type for the parallel type offering a sub-DSL for working with Flowable items
* in parallel.
* Contains the base type {@link io.reactivex.parallel.ParallelFlowable},
* a sub-DSL for working with {@link io.reactivex.Flowable} sequences in parallel.
*/
package io.reactivex.parallel;
4 changes: 2 additions & 2 deletions src/main/java/io/reactivex/plugins/package-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

/**
* Callback types and a central plugin handler class to hook into the lifecycle
* of the base reactive types and schedulers.
* Contains the central plugin handler {@link io.reactivex.plugins.RxJavaPlugins}
* class to hook into the lifecycle of the base reactive types and schedulers.
*/
package io.reactivex.plugins;
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.atomic.AtomicInteger;

import io.reactivex.Observable;
import io.reactivex.Observer;
import io.reactivex.TestHelper;
import io.reactivex.disposables.Disposable;
Expand Down