OSDN Git Service

Remove obsolete fields from InputMethodManager.
authorYohei Yukawa <yukawa@google.com>
Tue, 12 May 2015 18:11:27 +0000 (11:11 -0700)
committerYohei Yukawa <yukawa@google.com>
Tue, 12 May 2015 18:11:27 +0000 (11:11 -0700)
IMM#mViewTopLeft and IMM#mViewToScreenMatrix are no longer used.
They should have not been removed in
I4a577bfd02b37b9e56c80b8b41bb25afa95dd8ef.

Change-Id: Ia685956c8f7dda1143135345ee9a3873705975ef

core/java/android/view/inputmethod/InputMethodManager.java

index 040fd37..568e160 100644 (file)
@@ -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();
-
     // -----------------------------------------------------------
 
     /**