summaryrefslogtreecommitdiffstats
path: root/core/java/android/util
diff options
context:
space:
mode:
authorChet Haase <chet@android.com>2012-11-27 09:39:16 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-11-27 09:39:16 -0800
commit161194daad7cee031475648be294e5e9d4bc6d68 (patch)
tree4f30e773a5553788d79613ec01a708a4675181f8 /core/java/android/util
parent17f9e778a5f22bce8df9bed83b9b0d7abf72e9a9 (diff)
parentd8a6b5445c070e1ab5d86a87e6669340591625d7 (diff)
downloadframeworks_base-161194daad7cee031475648be294e5e9d4bc6d68.zip
frameworks_base-161194daad7cee031475648be294e5e9d4bc6d68.tar.gz
frameworks_base-161194daad7cee031475648be294e5e9d4bc6d68.tar.bz2
am d8a6b544: am 21243369: Merge "Fix infinite recursive loop"
* commit 'd8a6b5445c070e1ab5d86a87e6669340591625d7': Fix infinite recursive loop
Diffstat (limited to 'core/java/android/util')
-rw-r--r--core/java/android/util/IntProperty.java2
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