commit | 2124336984cb6c189f03c271636a1cc8babb2371 | [log] [tgz] |
---|---|---|
author | Chet Haase <chet@android.com> | Tue Nov 27 08:34:18 2012 -0800 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Nov 27 08:34:18 2012 -0800 |
tree | b6523b6f4efd2455dd9c3cb339f3cf6e11a14d28 | |
parent | 6e8c1495f6a65124750155409ce326736744a42b [diff] | |
parent | c5d43f76fd7c3ccb91f1b75618a9c9e8f202505b [diff] |
Merge "Fix infinite recursive loop"
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 @@ @Override final public void set(T object, Integer value) { - set(object, value.intValue()); + setValue(object, value.intValue()); } } \ No newline at end of file