summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYohei Yukawa <yukawa@google.com>2015-05-12 11:11:27 -0700
committerYohei Yukawa <yukawa@google.com>2015-05-12 11:11:27 -0700
commit6d090c42a7e8e43bbfeda45c5c4200321bd11ed7 (patch)
treead75dfab8a7115a955469a6eaf589d7dce3a26ee
parent389d5ac6ac974f171c12eb608eb8a3e2cad120f8 (diff)
downloadframeworks_base-6d090c42a7e8e43bbfeda45c5c4200321bd11ed7.zip
frameworks_base-6d090c42a7e8e43bbfeda45c5c4200321bd11ed7.tar.gz
frameworks_base-6d090c42a7e8e43bbfeda45c5c4200321bd11ed7.tar.bz2
Remove obsolete fields from InputMethodManager.
IMM#mViewTopLeft and IMM#mViewToScreenMatrix are no longer used. They should have not been removed in I4a577bfd02b37b9e56c80b8b41bb25afa95dd8ef. Change-Id: Ia685956c8f7dda1143135345ee9a3873705975ef
-rw-r--r--core/java/android/view/inputmethod/InputMethodManager.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/java/android/view/inputmethod/InputMethodManager.java b/core/java/android/view/inputmethod/InputMethodManager.java
index 040fd37..568e160 100644
--- a/core/java/android/view/inputmethod/InputMethodManager.java
+++ b/core/java/android/view/inputmethod/InputMethodManager.java
@@ -350,16 +350,6 @@ public final class InputMethodManager {
*/
private CursorAnchorInfo mCursorAnchorInfo = null;
- /**
- * The buffer to retrieve the view location in screen coordinates in {@link #updateCursor}.
- */
- private final int[] mViewTopLeft = new int[2];
-
- /**
- * The matrix to convert the view location into screen coordinates in {@link #updateCursor}.
- */
- private final Matrix mViewToScreenMatrix = new Matrix();
-
// -----------------------------------------------------------
/**