Fix a copy/paste typo in ViewPropertyAnimator
Change-Id: I149351f062e874fc11da61f416da5cfa5b1cb444
This commit is contained in:
@@ -309,8 +309,8 @@ public class ViewPropertyAnimator {
|
||||
*/
|
||||
public ViewPropertyAnimator setStartDelay(long startDelay) {
|
||||
if (startDelay < 0) {
|
||||
throw new IllegalArgumentException("Animators cannot have negative duration: " +
|
||||
startDelay);
|
||||
throw new IllegalArgumentException("Animators cannot have negative start " +
|
||||
"delay: " + startDelay);
|
||||
}
|
||||
mStartDelaySet = true;
|
||||
mStartDelay = startDelay;
|
||||
|
||||
Reference in New Issue
Block a user