Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.compare.mpatch.transform/src/org/eclipse/emf/compare/mpatch/transform/actions/ScopeExpensionAction.java')
-rw-r--r--plugins/org.eclipse.emf.compare.mpatch.transform/src/org/eclipse/emf/compare/mpatch/transform/actions/ScopeExpensionAction.java33
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/org.eclipse.emf.compare.mpatch.transform/src/org/eclipse/emf/compare/mpatch/transform/actions/ScopeExpensionAction.java b/plugins/org.eclipse.emf.compare.mpatch.transform/src/org/eclipse/emf/compare/mpatch/transform/actions/ScopeExpensionAction.java
deleted file mode 100644
index 3fae26e2e..000000000
--- a/plugins/org.eclipse.emf.compare.mpatch.transform/src/org/eclipse/emf/compare/mpatch/transform/actions/ScopeExpensionAction.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2010, 2011 Technical University of Denmark.
- * 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
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Patrick Koenemann, DTU Informatics - initial API and implementation
- *******************************************************************************/
-package org.eclipse.emf.compare.mpatch.transform.actions;
-
-import org.eclipse.emf.compare.mpatch.extension.IMPatchTransformation;
-import org.eclipse.emf.compare.mpatch.transform.impl.ScopeExpansion;
-
-
-/**
- * The action for {@link ScopeExpansion}.
- *
- * @author Patrick Koenemann (pk@imm.dtu.dk)
- */
-public class ScopeExpensionAction extends AbstractGeneralizationAction {
-
- /**
- * This action just delegates the call to
- * {@link ScopeExpansion#transform(org.eclipse.emf.compare.mpatch.MPatchModel)}.
- */
- @Override
- protected IMPatchTransformation getTransformation() {
- return new ScopeExpansion();
- }
-
-}

Back to the top