Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCamille Letavernier2015-12-09 13:16:33 +0000
committerCamille Letavernier2015-12-09 13:16:33 +0000
commit9333f6a06f22015605bea6a7d02ea71713a9715f (patch)
tree70dd46889938f5260cbb59eaf9ac3b41a1082ab6 /plugins
parente30ed7373196e7d97775072e50c15451638d9358 (diff)
downloadorg.eclipse.papyrus-9333f6a06f22015605bea6a7d02ea71713a9715f.tar.gz
org.eclipse.papyrus-9333f6a06f22015605bea6a7d02ea71713a9715f.tar.xz
org.eclipse.papyrus-9333f6a06f22015605bea6a7d02ea71713a9715f.zip
[Releng] Fix PLUGIN_ID constant to match the actual bundle's ID
Change-Id: Icf3904c75ed12e70f2cccdc10ea31cc5f6a7fadf Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/infra/nattable/org.eclipse.papyrus.infra.nattable.welcome/src/org/eclipse/papyrus/infra/nattable/welcome/internal/Activator.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable.welcome/src/org/eclipse/papyrus/infra/nattable/welcome/internal/Activator.java b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable.welcome/src/org/eclipse/papyrus/infra/nattable/welcome/internal/Activator.java
index 3347f46122a..a9604939b86 100644
--- a/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable.welcome/src/org/eclipse/papyrus/infra/nattable/welcome/internal/Activator.java
+++ b/plugins/infra/nattable/org.eclipse.papyrus.infra.nattable.welcome/src/org/eclipse/papyrus/infra/nattable/welcome/internal/Activator.java
@@ -1,6 +1,6 @@
/*****************************************************************************
* Copyright (c) 2015 Christian W. Damus and others.
- *
+ *
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -8,7 +8,7 @@
*
* Contributors:
* Christian W. Damus - Initial API and implementation
- *
+ *
*****************************************************************************/
package org.eclipse.papyrus.infra.nattable.welcome.internal;
@@ -22,7 +22,7 @@ import org.osgi.framework.BundleContext;
public class Activator extends AbstractUIPlugin {
// The plug-in ID
- public static final String PLUGIN_ID = "org.eclipse.papyrus.infra.gmfdiag.welcome"; //$NON-NLS-1$
+ public static final String PLUGIN_ID = "org.eclipse.papyrus.infra.nattable.welcome"; //$NON-NLS-1$
// The shared instance
private static Activator plugin;

Back to the top