We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968678f commit b923eceCopy full SHA for b923ece
1 file changed
src/main/java/rx/subscribers/LazyBindingSubscriber.java
@@ -54,14 +54,12 @@ public void invalidate() {
54
55
@Override
56
public ObservableList<?> getDependencies() {
57
- throw new UnsupportedOperationException();
+ return binding.getDependencies();
58
}
59
60
61
public void dispose() {
62
- if (subscription != null) {
63
- binding.dispose();
64
- }
+ binding.dispose();
65
66
67
/**
0 commit comments