aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/Suggest.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2011-08-23 14:30:26 +0900
committerJean Chalard <jchalard@google.com>2011-08-23 14:55:34 +0900
commita6e912cf9849f5c979303042ce83820a8dc560d0 (patch)
tree4474d248337540a88ec823ca34347f1521ecdcb6 /java/src/com/android/inputmethod/latin/Suggest.java
parentb041412cd787ffb486512103ce17ef601fb7a075 (diff)
downloadlatinime-a6e912cf9849f5c979303042ce83820a8dc560d0.tar.gz
latinime-a6e912cf9849f5c979303042ce83820a8dc560d0.tar.xz
latinime-a6e912cf9849f5c979303042ce83820a8dc560d0.zip
Fix a bug with the string pool.
This also adds some optional debug code to detect more easily possible future occurrences of the same problem. Bug: 5195017 Change-Id: I2558b468e46f7090de868f1ec2dc9e24895d670f
Diffstat (limited to '')
-rw-r--r--java/src/com/android/inputmethod/latin/Suggest.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java
index e3cb6987a..29b629576 100644
--- a/java/src/com/android/inputmethod/latin/Suggest.java
+++ b/java/src/com/android/inputmethod/latin/Suggest.java
@@ -284,7 +284,14 @@ public class Suggest implements Dictionary.WordCallback {
}
protected void addBigramToSuggestions(CharSequence bigram) {
- mSuggestions.add(bigram);
+ // TODO: Try to be a little more shrewd with resource allocation.
+ // At the moment we copy this object because the StringBuilders are pooled (see
+ // StringBuilderPool.java) and when we are finished using mSuggestions and
+ // mBigramSuggestions we will take everything from both and insert them back in the
+ // pool, so we can't allow the same object to be in both lists at the same time.
+ final StringBuilder sb = StringBuilderPool.getStringBuilder(getApproxMaxWordLength());
+ sb.append(bigram);
+ mSuggestions.add(sb);
}
// TODO: cleanup dictionaries looking up and suggestions building with SuggestedWords.Builder