commit | 5c430bb8ccd3beabc8bc21458702b636a546e746 | [log] [tgz] |
---|---|---|
author | Karsten Thoms <karsten.thoms@itemis.de> | Tue Jun 13 10:57:04 2017 +0200 |
committer | Thomas Watson <tjwatson@us.ibm.com> | Fri Jun 15 09:32:26 2018 -0400 |
tree | 11bc162231222ce721fc431cfe94400ea4f19acd | |
parent | 3cd187a9db700b43b3f785cbc4f5a90b51832509 [diff] |
Bug 518175 Pass bundle id to url_resolvePlugin message Change-Id: I55936f443e2f2db8f366c105c0e3b13f8eebfa48 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
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 1386ae6..f8b3b2b 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 @@ 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;