- * A typical implementation of {@code subscribe} does the following: - *
- * An {@code Observable
- * For more information see the
- * RxJava Wiki
- *
- * @param observer
- * the {@link Subscriber}
- * @param scheduler
- * the {@link Scheduler} on which Subscribers subscribe to the Observable
- * @return a {@link Subscription} reference with which Subscribers that are {@link Observer}s can
- * unsubscribe from the Observable
- * @throws IllegalArgumentException
- * if an argument to {@code subscribe()} is {@code null}
- */
- public final Subscription subscribe(Subscriber super T> observer, Scheduler scheduler) {
- return subscribeOn(scheduler).subscribe(observer);
- }
-
/**
* Asynchronously subscribes Observers to this Observable on the specified {@link Scheduler}.
*
diff --git a/rxjava-core/src/test/java/rx/schedulers/AbstractSchedulerConcurrencyTests.java b/rxjava-core/src/test/java/rx/schedulers/AbstractSchedulerConcurrencyTests.java
index 332b9c257b..fd81a2d5fb 100644
--- a/rxjava-core/src/test/java/rx/schedulers/AbstractSchedulerConcurrencyTests.java
+++ b/rxjava-core/src/test/java/rx/schedulers/AbstractSchedulerConcurrencyTests.java
@@ -371,7 +371,7 @@ public void call(Integer t) {
final CountDownLatch latch = new CountDownLatch(5);
final CountDownLatch first = new CountDownLatch(1);
- o1.subscribe(new Action1