Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/Moka/org.eclipse.papyrus.moka.ui/src/org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java')
-rw-r--r--sandbox/Moka/org.eclipse.papyrus.moka.ui/src/org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sandbox/Moka/org.eclipse.papyrus.moka.ui/src/org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java b/sandbox/Moka/org.eclipse.papyrus.moka.ui/src/org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java
index a6b7faec83c..ba4b6ed3ae6 100644
--- a/sandbox/Moka/org.eclipse.papyrus.moka.ui/src/org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java
+++ b/sandbox/Moka/org.eclipse.papyrus.moka.ui/src/org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java
@@ -284,10 +284,10 @@ public class AnimationUtils {
public void removeAnimationMarker(EObject semanticElement) {
if (semanticElement.eIsProxy())
semanticElement = resolve(semanticElement) ;
- IPapyrusMarker stackFrameMarker = eObjectToAnimationMarker.get(semanticElement) ;
- if (stackFrameMarker != null) {
+ IPapyrusMarker animationFrameMarker = eObjectToAnimationMarker.get(semanticElement) ;
+ if (animationFrameMarker != null) {
try {
- stackFrameMarker.delete() ;
+ animationFrameMarker.delete() ;
eObjectToAnimationMarker.remove(semanticElement) ;
} catch (CoreException e) {
Activator.log.error(e) ;

Back to the top