OSDN Git Service

Fix variable name
authorLucas Dupin <dupin@google.com>
Tue, 19 Jun 2018 17:42:42 +0000 (10:42 -0700)
committerLucas Dupin <dupin@google.com>
Tue, 19 Jun 2018 17:42:42 +0000 (10:42 -0700)
Variable was using member prefix

Test: make
Change-Id: I75b9839eaad57585d2f397156785b9eeadb4dad1

packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardAffordanceHelper.java

index 46d9827..e2f3319 100644 (file)
@@ -367,10 +367,10 @@ public class KeyguardAffordanceHelper {
         }
     }
 
-    private void startFinishingCircleAnimation(float velocity, Runnable mAnimationEndRunnable,
+    private void startFinishingCircleAnimation(float velocity, Runnable animationEndRunnable,
             boolean right) {
         KeyguardAffordanceView targetView = right ? mRightIcon : mLeftIcon;
-        targetView.finishAnimation(velocity, mAnimationEndRunnable);
+        targetView.finishAnimation(velocity, animationEndRunnable);
     }
 
     private void setTranslation(float translation, boolean isReset, boolean animateReset) {