Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2014-06-29 22:50:07 +0000
committerslewis2014-06-29 22:50:07 +0000
commitae7a2c7ac63c63646d5fd31f85f78e38920a82c9 (patch)
tree8963841b2c7d38754c79d04016d7d431a1509d9e /compendium
parent8c6cd9269804e330eb062bb95a5d73f52facac0a (diff)
downloadorg.eclipse.ecf-ae7a2c7ac63c63646d5fd31f85f78e38920a82c9.tar.gz
org.eclipse.ecf-ae7a2c7ac63c63646d5fd31f85f78e38920a82c9.tar.xz
org.eclipse.ecf-ae7a2c7ac63c63646d5fd31f85f78e38920a82c9.zip
Fix for rsa 1.1 support (added in previous recent commit
Diffstat (limited to 'compendium')
-rw-r--r--compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/internal/osgi/services/distribution/BasicTopologyManagerComponent.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/internal/osgi/services/distribution/BasicTopologyManagerComponent.java b/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/internal/osgi/services/distribution/BasicTopologyManagerComponent.java
index a51c64da1..d1a14d273 100644
--- a/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/internal/osgi/services/distribution/BasicTopologyManagerComponent.java
+++ b/compendium/bundles/org.eclipse.ecf.osgi.services.distribution/src/org/eclipse/ecf/internal/osgi/services/distribution/BasicTopologyManagerComponent.java
@@ -27,11 +27,12 @@ public class BasicTopologyManagerComponent implements EventListenerHook,
if (el instanceof Activator.ProxyEndpointEventListener)
basicTopologyManagerImpl = ((Activator.ProxyEndpointEventListener) el)
.getBasicTopologyManagerImpl();
+ else if (el instanceof BasicTopologyManagerImpl)
+ basicTopologyManagerImpl = (BasicTopologyManagerImpl) el;
}
void unbindEndpointEventListener(EndpointEventListener el) {
- if (el instanceof Activator.ProxyEndpointEventListener)
- basicTopologyManagerImpl = null;
+ basicTopologyManagerImpl = null;
}
void activate() {

Back to the top