Skip to content

Commit

Permalink
Fix unregistering a BrandingPlugin from BrandingRegistry
Browse files Browse the repository at this point in the history
  • Loading branch information
pklinef committed Jan 13, 2022
1 parent 8b23017 commit d64f5ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void serviceChanged(ServiceEvent event) {
if (assignableTo
&& event.getType() == ServiceEvent.UNREGISTERING
&& service instanceof BrandingPlugin) {
brandingPlugins.remove(service);
brandingPlugins.remove(serviceReference);
}
}
}
Expand Down

0 comments on commit d64f5ca

Please sign in to comment.