Skip to content

Commit 44c5705

Browse files
committed
Fix compilation error in Eclipse
1 parent 1330373 commit 44c5705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void testOnErrorCalledOnScheduler() throws Exception {
4141
final CountDownLatch latch = new CountDownLatch(1);
4242
final AtomicReference<Thread> thread = new AtomicReference<Thread>();
4343

44-
Completable.<String>error(new Exception())
44+
Completable.error(new Exception())
4545
.delay(0, TimeUnit.MILLISECONDS, Schedulers.newThread())
4646
.doOnError(new Consumer<Throwable>() {
4747
@Override

0 commit comments

Comments
 (0)