diff options
author | Chet Haase <chet@android.com> | 2012-11-27 09:37:23 -0800 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-11-27 09:37:23 -0800 |
commit | d8a6b5445c070e1ab5d86a87e6669340591625d7 (patch) | |
tree | 9468e0b3d70ecc10d0bc15fa1548825276cef8fe | |
parent | 5132d62600484bb4fce86295b288c782bee91de8 (diff) | |
parent | 2124336984cb6c189f03c271636a1cc8babb2371 (diff) | |
download | frameworks_base-d8a6b5445c070e1ab5d86a87e6669340591625d7.zip frameworks_base-d8a6b5445c070e1ab5d86a87e6669340591625d7.tar.gz frameworks_base-d8a6b5445c070e1ab5d86a87e6669340591625d7.tar.bz2 |
am 21243369: Merge "Fix infinite recursive loop"
* commit '2124336984cb6c189f03c271636a1cc8babb2371':
Fix infinite recursive loop
-rw-r--r-- | core/java/android/util/IntProperty.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/util/IntProperty.java b/core/java/android/util/IntProperty.java index 459d6b2..17977ca 100644 --- a/core/java/android/util/IntProperty.java +++ b/core/java/android/util/IntProperty.java @@ -42,7 +42,7 @@ public abstract class IntProperty<T> extends Property<T, Integer> { @Override final public void set(T object, Integer value) { - set(object, value.intValue()); + setValue(object, value.intValue()); } }
\ No newline at end of file |