Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordavid_williams2006-02-12 19:20:33 +0000
committerdavid_williams2006-02-12 19:20:33 +0000
commit3f3323735ebb84894d39b7f32871e45e89d85c08 (patch)
tree740deef3987dc5fafc89fa0d0fd522b903ba6c5e /plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java
parent1f32ea69f529c21ee3ac6a098bfc9c7945087f80 (diff)
downloadwebtools.javaee-3f3323735ebb84894d39b7f32871e45e89d85c08.tar.gz
webtools.javaee-3f3323735ebb84894d39b7f32871e45e89d85c08.tar.xz
webtools.javaee-3f3323735ebb84894d39b7f32871e45e89d85c08.zip
[127401] use getNameSpace over getUniqueIdentifier
Diffstat (limited to 'plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java')
-rw-r--r--plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java b/plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java
index 520abada4..f36d15ebc 100644
--- a/plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java
+++ b/plugins/org.eclipse.wst.web.ui/static_web_ui/org/eclipse/wst/web/ui/internal/wizards/NewProjectDataModelFacetWizard.java
@@ -259,7 +259,7 @@ public abstract class NewProjectDataModelFacetWizard extends AddRemoveFacetsWiza
* @return Returns the plugin id associated with this wizard
*/
public final String getPluginId() {
- return (configurationElement != null) ? configurationElement.getDeclaringExtension().getDeclaringPluginDescriptor().getUniqueIdentifier() : ""; //$NON-NLS-1$
+ return (configurationElement != null) ? configurationElement.getDeclaringExtension().getNamespace() : ""; //$NON-NLS-1$
}
/**

Back to the top