Skip to content
This repository has been archived by the owner on Jan 9, 2018. It is now read-only.

Commit

Permalink
Fixes eclipse-archived#2322 Basic UI no longer updates icons (eclipse…
Browse files Browse the repository at this point in the history
…-archived#2338)

* Fixes eclipse-archived#2322 Basic UI no longer updates icons

Signed-off-by: Wouter Born <eclipse@maindrain.net>
  • Loading branch information
wborn authored and chaton78 committed Oct 26, 2016
1 parent 8ed0bbf commit 0820d4a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,8 @@ public void removeSubscription(String subscriptionId) {
String sitemapPage = pageOfSubscription.remove(subscriptionId);
if (sitemapPage != null && !pageOfSubscription.values().contains(sitemapPage)) {
// this was the only subscription listening on this page, so we can dispose the listener
PageChangeListener listener = pageChangeListeners.get(sitemapPage);
PageChangeListener listener = pageChangeListeners.remove(sitemapPage);
if (listener != null) {
pageChangeListeners.remove(listener);
listener.dispose();
}
}
Expand Down

0 comments on commit 0820d4a

Please sign in to comment.