We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfb9cd1 commit a1191a2Copy full SHA for a1191a2
rxjava-core/src/main/java/rx/operators/OperationSingle.java
@@ -47,9 +47,9 @@ public Subscription onSubscribe(final Observer<? super T> observer) {
47
final SafeObservableSubscription subscription = new SafeObservableSubscription();
48
subscription.wrap(source.subscribe(new Observer<T>() {
49
50
- private volatile T value;
51
- private volatile boolean isEmpty = true;
52
- private volatile boolean hasTooManyElemenets;
+ private T value;
+ private boolean isEmpty = true;
+ private boolean hasTooManyElemenets;
53
54
@Override
55
public void onCompleted() {
0 commit comments