Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2011-06-15 07:26:53 +0000
committerHenrik Rentz-Reichert2011-06-15 07:26:53 +0000
commita095f3601e18573f3c59bdd19f177ec9c7bfa554 (patch)
tree02caf6f3ffe8cddf08abb580e43ce85f21c4f022 /plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice
parent5420fba33bdd382b721c2c99cfa51d17d24b62ed (diff)
downloadorg.eclipse.etrice-a095f3601e18573f3c59bdd19f177ec9c7bfa554.tar.gz
org.eclipse.etrice-a095f3601e18573f3c59bdd19f177ec9c7bfa554.tar.xz
org.eclipse.etrice-a095f3601e18573f3c59bdd19f177ec9c7bfa554.zip
[ui.structure] removed unused code
Diffstat (limited to 'plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice')
-rw-r--r--plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/support/AutoUpdateFeature.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/support/AutoUpdateFeature.java b/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/support/AutoUpdateFeature.java
index a957a91c4..c843de8cf 100644
--- a/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/support/AutoUpdateFeature.java
+++ b/plugins/org.eclipse.etrice.ui.structure/src/org/eclipse/etrice/ui/structure/support/AutoUpdateFeature.java
@@ -20,18 +20,8 @@ import org.eclipse.graphiti.mm.pictograms.Shape;
*/
public class AutoUpdateFeature extends AbstractUpdateFeature {
- private static boolean lastDoneChanges;
-
- /**
- * @return the lastDoneChanges
- */
- public static boolean isLastDoneChanges() {
- return lastDoneChanges;
- }
-
public AutoUpdateFeature(IFeatureProvider fp) {
super(fp);
- lastDoneChanges = false;
}
@Override
@@ -101,8 +91,6 @@ public class AutoUpdateFeature extends AbstractUpdateFeature {
if (updateIfNeeded(getDiagram()))
doneChanges = true;
- lastDoneChanges = doneChanges;
-
return doneChanges;
}

Back to the top