File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/rx/observable Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ apply plugin: 'rxjava-project'
7
7
apply plugin : ' java'
8
8
9
9
dependencies {
10
- compile ' io.reactivex:rxjava:1.0.+ '
10
+ compile ' io.reactivex:rxjava:1.0.12 '
11
11
compile ' com.google.guava:guava:+'
12
12
testCompile ' junit:junit-dep:4.10'
13
13
testCompile ' org.mockito:mockito-core:1.8.5'
Original file line number Diff line number Diff line change 21
21
import rx .Observable ;
22
22
import rx .Observable .OnSubscribe ;
23
23
import rx .functions .Action0 ;
24
- import rx .internal .operators .SingleDelayedProducer ;
24
+ import rx .internal .producers .SingleDelayedProducer ;
25
25
import rx .Observer ;
26
26
import rx .Scheduler ;
27
27
import rx .Scheduler .Worker ;
@@ -76,7 +76,7 @@ public void call(final Subscriber<? super T> subscriber) {
76
76
public void run () {
77
77
try {
78
78
T t = future .get ();
79
- sdp .set (t );
79
+ sdp .setValue (t );
80
80
} catch (Exception e ) {
81
81
subscriber .onError (e );
82
82
}
You can’t perform that action at this time.
0 commit comments