diff options
| author | 2010-10-14 14:23:30 -0700 | |
|---|---|---|
| committer | 2010-10-14 14:23:30 -0700 | |
| commit | fec30790e8caeb02db0618ec06eba7408efe2307 (patch) | |
| tree | 0063991f2c549bdb5a981e96bbdc88645d78b999 | |
| parent | 2f55ac04986a9d5102b8b30885c02a2ad985ea15 (diff) | |
Removed obsolete trace statements
Change-Id: I98041460da3109201b13b00ff553eb3e7290debb
| -rw-r--r-- | core/java/android/animation/PropertyValuesHolder.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/java/android/animation/PropertyValuesHolder.java b/core/java/android/animation/PropertyValuesHolder.java index da7c29bd6bf4..0f759f1aa164 100644 --- a/core/java/android/animation/PropertyValuesHolder.java +++ b/core/java/android/animation/PropertyValuesHolder.java @@ -135,7 +135,6 @@ public class PropertyValuesHolder implements Cloneable { public static PropertyValuesHolder ofInt(String propertyName, int... values) { PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName); pvh.setIntValues(values); - Log.v("PVH", "ofFloat: propertyName: " + pvh.mPropertyName); return pvh; } @@ -149,7 +148,6 @@ public class PropertyValuesHolder implements Cloneable { public static PropertyValuesHolder ofFloat(String propertyName, float... values) { PropertyValuesHolder pvh = new PropertyValuesHolder(propertyName); pvh.setFloatValues(values); - Log.v("PVH", "ofFloat: propertyName: " + pvh.mPropertyName); return pvh; } @@ -352,8 +350,6 @@ public class PropertyValuesHolder implements Cloneable { */ private Method getPropertyFunction(Class targetClass, String prefix, Class valueType) { // TODO: faster implementation... - Log.v("PVH", "getPropertyFunction: class, prefix, valueType, propertyName: " + - targetClass + ", " + prefix + ", " + valueType + ", "+ mPropertyName); Method returnVal = null; String firstLetter = mPropertyName.substring(0, 1); String theRest = mPropertyName.substring(1); |