Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Thoms2017-06-13 08:57:04 +0000
committerThomas Watson2018-06-15 13:32:26 +0000
commit5c430bb8ccd3beabc8bc21458702b636a546e746 (patch)
tree11bc162231222ce721fc431cfe94400ea4f19acd /bundles
parent3cd187a9db700b43b3f785cbc4f5a90b51832509 (diff)
downloadrt.equinox.bundles-5c430bb8ccd3beabc8bc21458702b636a546e746.tar.gz
rt.equinox.bundles-5c430bb8ccd3beabc8bc21458702b636a546e746.tar.xz
rt.equinox.bundles-5c430bb8ccd3beabc8bc21458702b636a546e746.zip
Change-Id: I55936f443e2f2db8f366c105c0e3b13f8eebfa48 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/PlatformURLPluginConnection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/PlatformURLPluginConnection.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/PlatformURLPluginConnection.java
index 1386ae653..f8b3b2b97 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/PlatformURLPluginConnection.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/internal/runtime/PlatformURLPluginConnection.java
@@ -58,7 +58,7 @@ public class PlatformURLPluginConnection extends PlatformURLConnection {
throw new IOException(CommonMessages.activator_not_available);
Bundle bundle = activator.getBundle(id);
if (bundle == null)
- throw new IOException(NLS.bind(CommonMessages.url_resolvePlugin, originalURL));
+ throw new IOException(NLS.bind(CommonMessages.url_resolvePlugin, id));
result[0] = bundle;
result[1] = (ix == -1 || (ix + 1) >= spec.length()) ? "/" : spec.substring(ix + 1); //$NON-NLS-1$
return result;

Back to the top