From 7494169cdc1199f11ca9744f18c28e6fcb694a6e Mon Sep 17 00:00:00 2001 From: Ben Christensen Date: Tue, 30 Sep 2014 19:01:30 -0700 Subject: [PATCH] updating to RxJava 1.0 --- .../java/rx/apache/http/examples/ExampleObservableHttp.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/rx/apache/http/examples/ExampleObservableHttp.java b/src/test/java/rx/apache/http/examples/ExampleObservableHttp.java index 4f65c09..9b11de6 100644 --- a/src/test/java/rx/apache/http/examples/ExampleObservableHttp.java +++ b/src/test/java/rx/apache/http/examples/ExampleObservableHttp.java @@ -80,7 +80,7 @@ public String call(byte[] bb) { }); } }) - .toBlockingObservable() + .toBlocking() .forEach(new Action1() { @Override @@ -118,7 +118,7 @@ public Boolean call(String t1) { } }) .take(3) - .toBlockingObservable() + .toBlocking() .forEach(new Action1() { @Override