Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvlorenzo2014-01-28 14:30:12 +0000
committervlorenzo2014-01-28 14:30:12 +0000
commit8389847f0bb01e701347bfb419b6dac3b2f4f0dc (patch)
treed5d3afc68d07c0b2fc736e9f0bb192df6d5c3261 /plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus
parentbb0cd6e089430d5550ed058cfe378671851e9916 (diff)
downloadorg.eclipse.papyrus-8389847f0bb01e701347bfb419b6dac3b2f4f0dc.tar.gz
org.eclipse.papyrus-8389847f0bb01e701347bfb419b6dac3b2f4f0dc.tar.xz
org.eclipse.papyrus-8389847f0bb01e701347bfb419b6dac3b2f4f0dc.zip
Fix an obvious bug (found with findBug)
Diffstat (limited to 'plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus')
-rw-r--r--plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CheckedOperationHistory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CheckedOperationHistory.java b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CheckedOperationHistory.java
index ddbfbce032a..4fd07f68e65 100644
--- a/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CheckedOperationHistory.java
+++ b/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.commands/src/org/eclipse/papyrus/commands/CheckedOperationHistory.java
@@ -241,7 +241,7 @@ public class CheckedOperationHistory implements IOperationHistory {
}
public IStatus redoOperation(IUndoableOperation operation, IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
- return redoOperation(operation, monitor, info);
+ return history.redoOperation(operation, monitor, info);
}
public void operationChanged(IUndoableOperation operation) {

Back to the top