From 3ab3ca4459c9ef59f29de9dcf3e2b370632301d8 Mon Sep 17 00:00:00 2001 From: Yuriy Budiyev Date: Wed, 15 Nov 2017 19:27:48 +0300 Subject: [PATCH] Dev --- .../android/circularprogressbar/CircularProgressBar.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/com/budiyev/android/circularprogressbar/CircularProgressBar.java b/src/main/java/com/budiyev/android/circularprogressbar/CircularProgressBar.java index fe3cebb..89ddab1 100644 --- a/src/main/java/com/budiyev/android/circularprogressbar/CircularProgressBar.java +++ b/src/main/java/com/budiyev/android/circularprogressbar/CircularProgressBar.java @@ -623,18 +623,12 @@ public void onAnimationCancel(Animator animation) { @Override public void onAnimationRepeat(Animator animation) { - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { - mIndeterminateStartAnimator.pause(); - } boolean growMode = !mIndeterminateGrowMode; mIndeterminateGrowMode = growMode; if (growMode) { mIndeterminateOffsetAngle = (mIndeterminateOffsetAngle + mIndeterminateMinimumAngle * 2f) % 360f; } - if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { - mIndeterminateStartAnimator.resume(); - } } } }