aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-09-27 03:28:57 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-09-27 03:28:57 -0700
commit337274a01558b40135ecb1de0b4fe2b67c607958 (patch)
tree946755db07ee5808be32ae16424dee6dac4abdad /java/src/com/android/inputmethod/latin/LatinIME.java
parentb2c1cd08661dc400c00d2545e24e22397f06281b (diff)
parente7bdd9910141c11701751be32bfed67956a950b6 (diff)
downloadlatinime-337274a01558b40135ecb1de0b4fe2b67c607958.tar.gz
latinime-337274a01558b40135ecb1de0b4fe2b67c607958.tar.xz
latinime-337274a01558b40135ecb1de0b4fe2b67c607958.zip
am e7bdd991: am a28a05e9: Cleanup: Make some classes as final
* commit 'e7bdd9910141c11701751be32bfed67956a950b6': Cleanup: Make some classes as final
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index b8a8f9aaf..3e893303f 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -85,7 +85,7 @@ import java.util.Locale;
/**
* Input method implementation for Qwerty'ish keyboard.
*/
-public class LatinIME extends InputMethodService implements KeyboardActionListener,
+public final class LatinIME extends InputMethodService implements KeyboardActionListener,
SuggestionStripView.Listener, TargetApplicationGetter.OnTargetApplicationKnownListener,
Suggest.SuggestInitializationListener {
private static final String TAG = LatinIME.class.getSimpleName();
@@ -183,7 +183,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
public final UIHandler mHandler = new UIHandler(this);
- public static class UIHandler extends StaticInnerHandlerWrapper<LatinIME> {
+ public static final class UIHandler extends StaticInnerHandlerWrapper<LatinIME> {
private static final int MSG_UPDATE_SHIFT_STATE = 0;
private static final int MSG_PENDING_IMS_CALLBACK = 1;
private static final int MSG_UPDATE_SUGGESTION_STRIP = 2;