Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Thoms2018-03-02 04:02:27 +0000
committerAlexander Kurtakov2018-03-09 14:06:14 +0000
commitcc763a549b44c68e8e7bc57a9a398407a44b696b (patch)
tree5ef56b0f0bbe1c37f4710a5d02ea138f78fd6a3a
parent80aedf7d7251de0c03bbe902e4644855e7030be5 (diff)
downloadeclipse.platform.team-cc763a549b44c68e8e7bc57a9a398407a44b696b.tar.gz
eclipse.platform.team-cc763a549b44c68e8e7bc57a9a398407a44b696b.tar.xz
eclipse.platform.team-cc763a549b44c68e8e7bc57a9a398407a44b696b.zip
Bug 531889 - Replace usage of IConfigurationElement#getNamespace
Change-Id: I9b1ebf7d76f285365a036967510fb1c97f23d375 Signed-off-by: Karsten Thoms <karsten.thoms@itemis.de>
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/registry/SynchronizeWizardDescription.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/registry/SynchronizeWizardDescription.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/registry/SynchronizeWizardDescription.java
index c5ab08636..183e4adfd 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/registry/SynchronizeWizardDescription.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/registry/SynchronizeWizardDescription.java
@@ -52,7 +52,7 @@ public class SynchronizeWizardDescription {
// Sanity check.
if ((label == null) || (className == null) || (identifier == null) || (description == null)) {
- throw new CoreException(new Status(IStatus.ERROR, configElement.getNamespace(), 0, "Invalid extension (missing label or class name): " + identifier, //$NON-NLS-1$
+ throw new CoreException(new Status(IStatus.ERROR, configElement.getContributor().getName(), 0, "Invalid extension (missing label or class name): " + identifier, //$NON-NLS-1$
null));
}

Back to the top