aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LastComposedWord.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-02-06 01:47:13 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-02-06 01:47:13 -0800
commitddbaddb00d19c885c2fb6d1254757cfd715b3bf5 (patch)
tree8259adc429321b70aa500f609963c6468507e880 /java/src/com/android/inputmethod/latin/LastComposedWord.java
parented348a48460a56047d045d5e2356c1b1286388b1 (diff)
parenta7f2500001c53dc5a6de9c2525a75229cc7c6645 (diff)
downloadlatinime-ddbaddb00d19c885c2fb6d1254757cfd715b3bf5.tar.gz
latinime-ddbaddb00d19c885c2fb6d1254757cfd715b3bf5.tar.xz
latinime-ddbaddb00d19c885c2fb6d1254757cfd715b3bf5.zip
am a7f25000: Fix a bug with common objects.
* commit 'a7f2500001c53dc5a6de9c2525a75229cc7c6645': Fix a bug with common objects.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LastComposedWord.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LastComposedWord.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/LastComposedWord.java b/java/src/com/android/inputmethod/latin/LastComposedWord.java
index 0c8c88f50..f34cb5ff9 100644
--- a/java/src/com/android/inputmethod/latin/LastComposedWord.java
+++ b/java/src/com/android/inputmethod/latin/LastComposedWord.java
@@ -51,6 +51,8 @@ public class LastComposedWord {
public static final LastComposedWord NOT_A_COMPOSED_WORD =
new LastComposedWord(null, null, null, "", "");
+ // 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<int[]> codes, final int[] xCoordinates,
final int[] yCoordinates, final String typedWord, final String autoCorrection) {
mCodes = codes;