Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2015-08-05 04:18:36 +0000
committerslewis2015-08-05 04:18:36 +0000
commit3fdc25508ef15f1c4d93b209ac74eff8024fc8ff (patch)
treedb34813dcebef3acaf24641cb1fcb40d1b48ddc8 /providers
parent592f7ab31fb8251c804e9686b65f28f8c3ab308d (diff)
downloadorg.eclipse.ecf-3fdc25508ef15f1c4d93b209ac74eff8024fc8ff.tar.gz
org.eclipse.ecf-3fdc25508ef15f1c4d93b209ac74eff8024fc8ff.tar.xz
org.eclipse.ecf-3fdc25508ef15f1c4d93b209ac74eff8024fc8ff.zip
Fix for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=474267
Diffstat (limited to 'providers')
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.r_osgi/META-INF/MANIFEST.MF2
-rw-r--r--providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/providers/bundles/org.eclipse.ecf.provider.r_osgi/META-INF/MANIFEST.MF b/providers/bundles/org.eclipse.ecf.provider.r_osgi/META-INF/MANIFEST.MF
index ea7c60795..511836bab 100644
--- a/providers/bundles/org.eclipse.ecf.provider.r_osgi/META-INF/MANIFEST.MF
+++ b/providers/bundles/org.eclipse.ecf.provider.r_osgi/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.eclipse.ecf.provider.r_osgi;singleton:=true
-Bundle-Version: 3.5.200.qualifier
+Bundle-Version: 3.5.300.qualifier
Import-Package: org.eclipse.ecf.core.util.reflection,
org.eclipse.ecf.remoteservice.asyncproxy;version="1.0.0",
org.eclipse.equinox.concurrent.future;version="1.0.0",
diff --git a/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java b/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java
index 8bd2a0a9e..de54fe980 100644
--- a/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java
+++ b/providers/bundles/org.eclipse.ecf.provider.r_osgi/src/org/eclipse/ecf/internal/provider/r_osgi/R_OSGiContainerInstantiator.java
@@ -106,7 +106,7 @@ public final class R_OSGiContainerInstantiator implements IContainerInstantiator
return new R_OSGiWSRemoteServiceContainer(remoteOSGiService, containerID);
else
return new R_OSGiRemoteServiceContainer(remoteOSGiService, containerID);
- } catch (IDCreateException e) {
+ } catch (Exception e) {
throw new ContainerCreateException("Could not create R_OSGI ID", e); //$NON-NLS-1$
}
}

Back to the top