Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoracuccuru2013-06-14 07:19:24 +0000
committeracuccuru2013-06-14 07:19:24 +0000
commitbf40e32193e2376d4c8ea291a5160ca42de93fb2 (patch)
treec12b96c10cdc2efb090b36b7ed3d8acd8877b97c
parent7764323699468469736401800418c91f6435e5f0 (diff)
downloadorg.eclipse.papyrus-bf40e32193e2376d4c8ea291a5160ca42de93fb2.tar.gz
org.eclipse.papyrus-bf40e32193e2376d4c8ea291a5160ca42de93fb2.tar.xz
org.eclipse.papyrus-bf40e32193e2376d4c8ea291a5160ca42de93fb2.zip
Minor renaming of a variable in AnimationUtils. Not related to any specific bug.
-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