diff options
| author | 2017-09-28 16:14:29 +0000 | |
|---|---|---|
| committer | 2017-09-28 16:14:29 +0000 | |
| commit | df2ff2bbf4dd54eee6b454074235dbb64d586b1e (patch) | |
| tree | 570421f9f40d71ea8b2930459f172e732ebe7eb4 | |
| parent | 0bc76e68b29a194841c66505c593732951cf1f4a (diff) | |
| parent | 18f3c3820f6519ef97b69bff2f97f6c5ba4bfcd2 (diff) | |
Merge "Do not specify the unchecked exception in the method signature"
| -rw-r--r-- | core/java/android/widget/SmartSelectSprite.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/widget/SmartSelectSprite.java b/core/java/android/widget/SmartSelectSprite.java index 27b93bc74969..061bd3c3f3b3 100644 --- a/core/java/android/widget/SmartSelectSprite.java +++ b/core/java/android/widget/SmartSelectSprite.java @@ -365,7 +365,7 @@ final class SmartSelectSprite { public void startAnimation( final PointF start, final List<RectF> destinationRectangles, - final Runnable onAnimationEnd) throws IllegalArgumentException { + final Runnable onAnimationEnd) { cancelAnimation(); final ValueAnimator.AnimatorUpdateListener updateListener = |