aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-03-25 18:15:15 +0900
committerJean Chalard <jchalard@google.com>2014-03-27 16:47:30 +0900
commit05c46f59fdc6065aad833d905fc9759ba907fc82 (patch)
tree55fc0e1ebf1f77de1d37dda01f387aee5a72782b /java/src
parent0de7a6d1a272d52a9544df1c693ae199ab5abc52 (diff)
downloadlatinime-05c46f59fdc6065aad833d905fc9759ba907fc82.tar.gz
latinime-05c46f59fdc6065aad833d905fc9759ba907fc82.tar.xz
latinime-05c46f59fdc6065aad833d905fc9759ba907fc82.zip
[CB16] Remove unused stuff
Bug: 13406701 Change-Id: Ib863c5181e1f5d74cfa4458060afc49d1ee8109e
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LastComposedWord.java19
-rw-r--r--java/src/com/android/inputmethod/latin/WordComposer.java23
2 files changed, 5 insertions, 37 deletions
diff --git a/java/src/com/android/inputmethod/latin/LastComposedWord.java b/java/src/com/android/inputmethod/latin/LastComposedWord.java
index a3b030626..69963d222 100644
--- a/java/src/com/android/inputmethod/latin/LastComposedWord.java
+++ b/java/src/com/android/inputmethod/latin/LastComposedWord.java
@@ -38,38 +38,25 @@ public final class LastComposedWord {
// or it may be exactly what the user typed if it's in the dictionary or the IME does not have
// enough confidence in any suggestion to auto-correct (auto-correct to typed word).
public static final int COMMIT_TYPE_DECIDED_WORD = 2;
- // COMMIT_TYPE_CANCEL_AUTO_CORRECT is used upon committing back the old word upon cancelling
- // an auto-correction.
- public static final int COMMIT_TYPE_CANCEL_AUTO_CORRECT = 3;
public static final String NOT_A_SEPARATOR = "";
- public final ArrayList<Event> mEvents;
public final String mTypedWord;
public final CharSequence mCommittedWord;
public final String mSeparatorString;
public final String mPrevWord;
public final int mCapitalizedMode;
- public final InputPointers mInputPointers =
- new InputPointers(Constants.DICTIONARY_MAX_WORD_LENGTH);
private boolean mActive;
public static final LastComposedWord NOT_A_COMPOSED_WORD =
- new LastComposedWord(new ArrayList<Event>(), null, "", "",
- NOT_A_SEPARATOR, null, WordComposer.CAPS_MODE_OFF);
+ new LastComposedWord("", "", NOT_A_SEPARATOR, null, WordComposer.CAPS_MODE_OFF);
// Warning: this is using the passed objects as is and fully expects them to be
// immutable. Do not fiddle with their contents after you passed them to this constructor.
- public LastComposedWord(final ArrayList<Event> events,
- final InputPointers inputPointers, final String typedWord,
- final CharSequence committedWord, final String separatorString,
- final String prevWord, final int capitalizedMode) {
- if (inputPointers != null) {
- mInputPointers.copy(inputPointers);
- }
+ public LastComposedWord(final String typedWord, final CharSequence committedWord,
+ final String separatorString, final String prevWord, final int capitalizedMode) {
mTypedWord = typedWord;
- mEvents = new ArrayList<Event>(events);
mCommittedWord = committedWord;
mSeparatorString = separatorString;
mActive = true;
diff --git a/java/src/com/android/inputmethod/latin/WordComposer.java b/java/src/com/android/inputmethod/latin/WordComposer.java
index 4638c8a8b..52d13770b 100644
--- a/java/src/com/android/inputmethod/latin/WordComposer.java
+++ b/java/src/com/android/inputmethod/latin/WordComposer.java
@@ -426,9 +426,8 @@ public final class WordComposer {
// Note: currently, we come here whenever we commit a word. If it's a MANUAL_PICK
// or a DECIDED_WORD we may cancel the commit later; otherwise, we should deactivate
// the last composed word to ensure this does not happen.
- final LastComposedWord lastComposedWord = new LastComposedWord(mEvents,
- mInputPointers, mTypedWord.toString(), committedWord, separatorString,
- prevWord, mCapitalizedMode);
+ final LastComposedWord lastComposedWord = new LastComposedWord(
+ mTypedWord.toString(), committedWord, separatorString, prevWord, mCapitalizedMode);
mInputPointers.reset();
if (type != LastComposedWord.COMMIT_TYPE_DECIDED_WORD
&& type != LastComposedWord.COMMIT_TYPE_MANUAL_PICK) {
@@ -459,24 +458,6 @@ public final class WordComposer {
public void discardPreviousWordForSuggestion() {
mPreviousWordForSuggestion = null;
}
-
- public void resumeSuggestionOnLastComposedWord(final LastComposedWord lastComposedWord,
- final String previousWord) {
- mEvents.clear();
- Collections.copy(mEvents, lastComposedWord.mEvents);
- mInputPointers.set(lastComposedWord.mInputPointers);
- mTypedWord.setLength(0);
- mCombinerChain.reset();
- mTypedWord.append(lastComposedWord.mTypedWord);
- refreshSize();
- mCapitalizedMode = lastComposedWord.mCapitalizedMode;
- mAutoCorrection = null; // This will be filled by the next call to updateSuggestion.
- mCursorPositionWithinWord = mCodePointSize;
- mRejectedBatchModeSuggestion = null;
- mIsResumed = true;
- mPreviousWordForSuggestion = previousWord;
- }
-
public boolean isBatchMode() {
return mIsBatchMode;
}