Community
Participate
Working Groups
Build Identifier: I20100608-0911 Inside the PasswordProviderSelector at instance creation, you do add himself as IRegistryEventListener. Inside the stop() method you did it again: public void stop() { if (instance != null) { IExtensionRegistry registry = RegistryFactory.getRegistry(); registry.addListener(instance, EXTENSION_POINT); instance = null; } } At this point, should not do unregister this listener? with: public void stop() { if (instance != null) { IExtensionRegistry registry = RegistryFactory.getRegistry(); registry.removeListener(instance); instance = null; } Reproducible: Always
You are quite correct, that was probably a copy/paste artifact. Fixed in CVS Head. Thank you for taking time to figure this out!