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 366598a commit 6eed05fCopy full SHA for 6eed05f
src/main/java/rx/internal/util/SubscriptionList.java
@@ -60,6 +60,9 @@ public boolean isUnsubscribed() {
60
* the {@link Subscription} to add
61
*/
62
public void add(final Subscription s) {
63
+ if (s.isUnsubscribed()) {
64
+ return;
65
+ }
66
if (!unsubscribed) {
67
synchronized (this) {
68
0 commit comments