Skip to content

Commit

Permalink
bugfix CompositeSubscription usage
Browse files Browse the repository at this point in the history
  • Loading branch information
MFlisar committed Oct 17, 2016
1 parent 40dbd85 commit e173ca6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ private void doUnsubscribe(Object boundObject)
CompositeSubscription subscriptions = mSubscriptions.get(boundObject.getClass());
if (subscriptions != null)
{
subscriptions.clear();
subscriptions.unsubscribe();
mSubscriptions.remove(boundObject.getClass());
}
}
Expand Down

0 comments on commit e173ca6

Please sign in to comment.