diff options
author | 2013-01-21 14:26:19 +0900 | |
---|---|---|
committer | 2013-01-21 14:26:33 +0900 | |
commit | b9f219c935afc9f93a31452fbc159c80dfe63745 (patch) | |
tree | 76f089f54e7896f78c0706e09af20f8d147e4ff2 /java/src | |
parent | 64cc10769f491fbf68b4b7f330d09798f87ef722 (diff) | |
download | latinime-b9f219c935afc9f93a31452fbc159c80dfe63745.tar.gz latinime-b9f219c935afc9f93a31452fbc159c80dfe63745.tar.xz latinime-b9f219c935afc9f93a31452fbc159c80dfe63745.zip |
Remove unused Keyboard.purgeKeyboardAndClosing method
Change-Id: Ia09ac04b0edca2a22d64ba83e054b115fe8851a6
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/KeyboardView.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardView.java b/java/src/com/android/inputmethod/keyboard/KeyboardView.java index b7584d4cd..7fc68e061 100644 --- a/java/src/com/android/inputmethod/keyboard/KeyboardView.java +++ b/java/src/com/android/inputmethod/keyboard/KeyboardView.java @@ -1029,6 +1029,7 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy, cancelAllMessages(); onCancelMoreKeysPanel(); mInvalidateAllKeys = true; + mKeyboard = null; requestLayout(); } @@ -1062,11 +1063,6 @@ public class KeyboardView extends View implements PointerTracker.DrawingProxy, return false; } - public void purgeKeyboardAndClosing() { - mKeyboard = null; - closing(); - } - @Override protected void onDetachedFromWindow() { super.onDetachedFromWindow(); |