diff options
author | John Reck <jreck@google.com> | 2014-04-11 20:14:46 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-04-11 20:14:46 +0000 |
commit | c70f3db80ad522bdb5938b5944b3d9c7d7758f12 (patch) | |
tree | 78fd7698927c8e37d79f9a3176323712d072095f /core/java | |
parent | d951ab230d80631731ef12b5d76c678c30165d6a (diff) | |
parent | f7483e3af0513a1baa8341d403df2e0c0896a9ff (diff) | |
download | frameworks_base-c70f3db80ad522bdb5938b5944b3d9c7d7758f12.zip frameworks_base-c70f3db80ad522bdb5938b5944b3d9c7d7758f12.tar.gz frameworks_base-c70f3db80ad522bdb5938b5944b3d9c7d7758f12.tar.bz2 |
Merge "Simplify matrix calculations"
Diffstat (limited to 'core/java')
-rw-r--r-- | core/java/android/view/View.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 320140e..3c0e6ef 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -2968,12 +2968,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback, private boolean mLastIsOpaque; /** - * Convenience value to check for float values that are close enough to zero to be considered - * zero. - */ - private static final float NONZERO_EPSILON = .001f; - - /** * The distance in pixels from the left edge of this view's parent * to the left edge of this view. * {@hide} |