diff options
author | 2012-09-27 18:16:16 +0900 | |
---|---|---|
committer | 2012-09-27 19:03:30 +0900 | |
commit | a28a05e971cc242b338331a3b78276fa95188d19 (patch) | |
tree | 946755db07ee5808be32ae16424dee6dac4abdad /java/src/com/android/inputmethod/latin/LastComposedWord.java | |
parent | 17752016713b92a55e9c2356d07b7ed51c67416b (diff) | |
download | latinime-a28a05e971cc242b338331a3b78276fa95188d19.tar.gz latinime-a28a05e971cc242b338331a3b78276fa95188d19.tar.xz latinime-a28a05e971cc242b338331a3b78276fa95188d19.zip |
Cleanup: Make some classes as final
Change-Id: I6009b3c1950ba32b7f1e205a3db2307fe0cd688e
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LastComposedWord.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LastComposedWord.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LastComposedWord.java b/java/src/com/android/inputmethod/latin/LastComposedWord.java index dd73a978c..94cdc9b85 100644 --- a/java/src/com/android/inputmethod/latin/LastComposedWord.java +++ b/java/src/com/android/inputmethod/latin/LastComposedWord.java @@ -22,7 +22,7 @@ import android.text.TextUtils; * This class encapsulates data about a word previously composed, but that has been * committed already. This is used for resuming suggestion, and cancel auto-correction. */ -public class LastComposedWord { +public final class LastComposedWord { // COMMIT_TYPE_USER_TYPED_WORD is used when the word committed is the exact typed word, with // no hinting from the IME. It happens when some external event happens (rotating the device, // for example) or when auto-correction is off by settings or editor attributes. |