Skip to content

Commit

Permalink
Merge pull request #1031 from benjchristensen/subject-npe
Browse files Browse the repository at this point in the history
Fix NPE in SubjectSubscriptionManager
  • Loading branch information
benjchristensen committed Apr 11, 2014
2 parents bc387d1 + 56eebb5 commit 33819b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void call() {
}));
if (subscription.isUnsubscribed()) {
addedObserver = false;
break;
return;
}
// on subscribe add it to the map of outbound observers to notify
newState = current.addObserver(subscription, observer);
Expand Down

0 comments on commit 33819b5

Please sign in to comment.