Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2013-01-26 08:19:01 +0000
committerEike Stepper2013-01-26 08:19:01 +0000
commit95b519d19181f4f7c65eb50fd7517a3e79feab1c (patch)
treea8c4fb08738f80b25aca687111e4f85455d6e972
parentab4950742d0662a8412a35898305d3393976cfdc (diff)
downloadcdo-95b519d19181f4f7c65eb50fd7517a3e79feab1c.tar.gz
cdo-95b519d19181f4f7c65eb50fd7517a3e79feab1c.tar.xz
cdo-95b519d19181f4f7c65eb50fd7517a3e79feab1c.zip
[399153] CDOEditPlugin.CDOEditPlugin() uses uninitialized constant
https://bugs.eclipse.org/bugs/show_bug.cgi?id=399153
-rw-r--r--plugins/org.eclipse.emf.cdo.edit/src/org/eclipse/emf/cdo/edit/CDOEditPlugin.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.emf.cdo.edit/src/org/eclipse/emf/cdo/edit/CDOEditPlugin.java b/plugins/org.eclipse.emf.cdo.edit/src/org/eclipse/emf/cdo/edit/CDOEditPlugin.java
index af6d2eb4b7..dc9332fd03 100644
--- a/plugins/org.eclipse.emf.cdo.edit/src/org/eclipse/emf/cdo/edit/CDOEditPlugin.java
+++ b/plugins/org.eclipse.emf.cdo.edit/src/org/eclipse/emf/cdo/edit/CDOEditPlugin.java
@@ -17,7 +17,7 @@ import org.eclipse.emf.ecore.provider.EcoreEditPlugin;
/**
* This is the central singleton for the Eresource edit plugin.
* <!-- begin-user-doc -->
- *
+ *
* @since 4.0 <!-- end-user-doc -->
* @generated
*/
@@ -40,11 +40,11 @@ public final class CDOEditPlugin extends EMFPlugin
/**
* Create the instance.
* <!-- begin-user-doc --> <!-- end-user-doc -->
- * @generated
+ * @generated NOT
*/
public CDOEditPlugin()
{
- super(new ResourceLocator[] { EcoreEditPlugin.INSTANCE, CDOEditPlugin.INSTANCE, });
+ super(new ResourceLocator[] { EcoreEditPlugin.INSTANCE, });
}
/**

Back to the top