diff options
author | Ken Wakasa <kwakasa@google.com> | 2012-03-09 19:56:35 +0900 |
---|---|---|
committer | Ken Wakasa <kwakasa@google.com> | 2012-03-09 22:48:43 +0900 |
commit | f76a50ce8fdc6aea22cabc77b2977a1a15a79630 (patch) | |
tree | 52a02b4db9b5acbef944d29c251bf2eae40c625b /core/java/android/animation | |
parent | a64890a02e5561d73da57695dcfc6b35ca05c321 (diff) | |
download | frameworks_base-f76a50ce8fdc6aea22cabc77b2977a1a15a79630.zip frameworks_base-f76a50ce8fdc6aea22cabc77b2977a1a15a79630.tar.gz frameworks_base-f76a50ce8fdc6aea22cabc77b2977a1a15a79630.tar.bz2 |
Fix obvious typos under frameworks/base/core
Change-Id: Ia5fc3db1bb51824e7523885553be926bcc42d736
Diffstat (limited to 'core/java/android/animation')
-rw-r--r-- | core/java/android/animation/Animator.java | 4 | ||||
-rwxr-xr-x | core/java/android/animation/ValueAnimator.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/animation/Animator.java b/core/java/android/animation/Animator.java index e01fa1a..788765d 100644 --- a/core/java/android/animation/Animator.java +++ b/core/java/android/animation/Animator.java @@ -208,7 +208,7 @@ public abstract class Animator implements Cloneable { * this call to its child objects to tell them to set up the values. A * ObjectAnimator object will use the information it has about its target object * and PropertyValuesHolder objects to get the start values for its properties. - * An ValueAnimator object will ignore the request since it does not have enough + * A ValueAnimator object will ignore the request since it does not have enough * information (such as a target object) to gather these values. */ public void setupStartValues() { @@ -220,7 +220,7 @@ public abstract class Animator implements Cloneable { * this call to its child objects to tell them to set up the values. A * ObjectAnimator object will use the information it has about its target object * and PropertyValuesHolder objects to get the start values for its properties. - * An ValueAnimator object will ignore the request since it does not have enough + * A ValueAnimator object will ignore the request since it does not have enough * information (such as a target object) to gather these values. */ public void setupEndValues() { diff --git a/core/java/android/animation/ValueAnimator.java b/core/java/android/animation/ValueAnimator.java index 954ae66..f69120a 100755 --- a/core/java/android/animation/ValueAnimator.java +++ b/core/java/android/animation/ValueAnimator.java @@ -400,7 +400,7 @@ public class ValueAnimator extends Animator { /** * Sets the values, per property, being animated between. This function is called internally - * by the constructors of ValueAnimator that take a list of values. But an ValueAnimator can + * by the constructors of ValueAnimator that take a list of values. But a ValueAnimator can * be constructed without values and this method can be called to set the values manually * instead. * |