diff options
author | 2010-09-22 22:54:14 -0700 | |
---|---|---|
committer | 2010-09-22 22:54:14 -0700 | |
commit | 4fab9f2fee9cfb1a67d805c1598deae02fa4d8cc (patch) | |
tree | c1e11a310cb794be5fe5e01d6e2a8b235ff2b68f /java/src | |
parent | 1241be7e8498b8cca348d74363ece68b3ade730c (diff) | |
parent | b75dee4b00b31524ab73684a948b82b90bae7ba1 (diff) | |
download | latinime-4fab9f2fee9cfb1a67d805c1598deae02fa4d8cc.tar.gz latinime-4fab9f2fee9cfb1a67d805c1598deae02fa4d8cc.tar.xz latinime-4fab9f2fee9cfb1a67d805c1598deae02fa4d8cc.zip |
am b75dee4b: Merge "Fix ArrayIndexOutOfBoundsException in WordComposer" into gingerbread
Merge commit 'b75dee4b00b31524ab73684a948b82b90bae7ba1' into gingerbread-plus-aosp
* commit 'b75dee4b00b31524ab73684a948b82b90bae7ba1':
Fix ArrayIndexOutOfBoundsException in WordComposer
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/WordComposer.java | 26 |
1 files changed, 10 insertions, 16 deletions
diff --git a/java/src/com/android/inputmethod/latin/WordComposer.java b/java/src/com/android/inputmethod/latin/WordComposer.java index 6772d53ea..fe4c68576 100644 --- a/java/src/com/android/inputmethod/latin/WordComposer.java +++ b/java/src/com/android/inputmethod/latin/WordComposer.java @@ -25,14 +25,14 @@ public class WordComposer { /** * The list of unicode values for each keystroke (including surrounding keys) */ - private ArrayList<int[]> mCodes; + private final ArrayList<int[]> mCodes; /** * The word chosen from the candidate list, until it is committed. */ private String mPreferredWord; - private StringBuilder mTypedWord; + private final StringBuilder mTypedWord; private int mCapsCount; @@ -116,11 +116,14 @@ public class WordComposer { * Delete the last keystroke as a result of hitting backspace. */ public void deleteLast() { - mCodes.remove(mCodes.size() - 1); - final int lastPos = mTypedWord.length() - 1; - char last = mTypedWord.charAt(lastPos); - mTypedWord.deleteCharAt(lastPos); - if (Character.isUpperCase(last)) mCapsCount--; + final int codesSize = mCodes.size(); + if (codesSize > 0) { + mCodes.remove(codesSize - 1); + final int lastPos = mTypedWord.length() - 1; + char last = mTypedWord.charAt(lastPos); + mTypedWord.deleteCharAt(lastPos); + if (Character.isUpperCase(last)) mCapsCount--; + } } /** @@ -132,15 +135,6 @@ public class WordComposer { if (wordSize == 0) { return null; } -// StringBuffer sb = new StringBuffer(wordSize); -// for (int i = 0; i < wordSize; i++) { -// char c = (char) mCodes.get(i)[0]; -// if (i == 0 && mIsCapitalized) { -// c = Character.toUpperCase(c); -// } -// sb.append(c); -// } -// return sb; return mTypedWord; } |