Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd Seidewitz2016-01-06 21:51:17 +0000
committerjeremie.tatibouet2016-03-21 15:15:03 +0000
commitb0a6ec7bbd8948b82f9349fee1829388b8b8e944 (patch)
tree5bdf6b0c4a601aee78ffbffb239b3f1af226438c /plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml
parent069132f88cae1c710d7e4e661ca63e8cc374a91b (diff)
downloadorg.eclipse.papyrus-b0a6ec7bbd8948b82f9349fee1829388b8b8e944.tar.gz
org.eclipse.papyrus-b0a6ec7bbd8948b82f9349fee1829388b8b8e944.tar.xz
org.eclipse.papyrus-b0a6ec7bbd8948b82f9349fee1829388b8b8e944.zip
Removed argumentless CachingDiagnostician constructor
- It was only used for testing and didn't work with the latest version of the Xtext CancelableDiagnostician. Change-Id: Ifd518b6765f3f43d1a52c937d77859a76471d8d8 Signed-off-by: Ed Seidewitz <ed-s@modeldriven.com>
Diffstat (limited to 'plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml')
-rw-r--r--plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/CachingDiagnostician.java9
1 files changed, 2 insertions, 7 deletions
diff --git a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/CachingDiagnostician.java b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/CachingDiagnostician.java
index 66a1044bad2..843a0c90fc9 100644
--- a/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/CachingDiagnostician.java
+++ b/plugins/uml/alf/org.eclipse.papyrus.uml.alf/src/org/eclipse/papyrus/uml/alf/CachingDiagnostician.java
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Copyright (c) 2014 CEA LIST.
+ * Copyright (c) 2014-2016 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
@@ -8,7 +8,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * Ed Seidewitz
+ * Ed Seidewitz
*****************************************************************************/
package org.eclipse.papyrus.uml.alf;
@@ -16,7 +16,6 @@ import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.EValidator;
import org.eclipse.xtext.validation.CancelableDiagnostician;
import com.google.inject.Inject;
@@ -30,10 +29,6 @@ public class CachingDiagnostician extends CancelableDiagnostician {
super(registry);
}
- public CachingDiagnostician() {
- this(EValidator.Registry.INSTANCE);
- }
-
@Override
public boolean validate(EObject eObject, DiagnosticChain diagnostics, Map<Object, Object> context) {
boolean result;

Back to the top