From bf40e32193e2376d4c8ea291a5160ca42de93fb2 Mon Sep 17 00:00:00 2001 From: acuccuru Date: Fri, 14 Jun 2013 07:19:24 +0000 Subject: Minor renaming of a variable in AnimationUtils. Not related to any specific bug. --- .../org/eclipse/papyrus/moka/ui/presentation/AnimationUtils.java | 6 +++--- 1 file 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) ; -- cgit v1.2.3