aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorKurt Partridge <kep@google.com>2013-01-17 14:04:03 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2013-01-17 14:04:03 -0800
commit687508114076fae310c95fd56b01a21737cd503c (patch)
tree7fb545450efb4e1216fb0a248a1ed08b608c13c0 /java
parent9545bcfa7634e6d09d2c012575ab37b1f6367570 (diff)
parente6a9655a0362bebccdf0d51ebc3579573617c95a (diff)
downloadlatinime-687508114076fae310c95fd56b01a21737cd503c.tar.gz
latinime-687508114076fae310c95fd56b01a21737cd503c.tar.xz
latinime-687508114076fae310c95fd56b01a21737cd503c.zip
am e6a9655a: Merge "Consolidate SuggestedWords.getWordInfo and .getInfo"
* commit 'e6a9655a0362bebccdf0d51ebc3579573617c95a': Consolidate SuggestedWords.getWordInfo and .getInfo
Diffstat (limited to 'java')
-rw-r--r--java/src/com/android/inputmethod/latin/SuggestedWords.java6
-rw-r--r--java/src/com/android/inputmethod/research/JsonUtils.java2
2 files changed, 2 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/SuggestedWords.java b/java/src/com/android/inputmethod/latin/SuggestedWords.java
index 572f2906e..b7ca60fec 100644
--- a/java/src/com/android/inputmethod/latin/SuggestedWords.java
+++ b/java/src/com/android/inputmethod/latin/SuggestedWords.java
@@ -65,10 +65,6 @@ public final class SuggestedWords {
return mSuggestedWordInfoList.get(pos).mWord;
}
- public SuggestedWordInfo getWordInfo(int pos) {
- return mSuggestedWordInfoList.get(pos);
- }
-
public SuggestedWordInfo getInfo(int pos) {
return mSuggestedWordInfoList.get(pos);
}
@@ -113,7 +109,7 @@ public final class SuggestedWords {
alreadySeen.add(typedWord.toString());
final int previousSize = previousSuggestions.size();
for (int pos = 1; pos < previousSize; pos++) {
- final SuggestedWordInfo prevWordInfo = previousSuggestions.getWordInfo(pos);
+ final SuggestedWordInfo prevWordInfo = previousSuggestions.getInfo(pos);
final String prevWord = prevWordInfo.mWord;
// Filter out duplicate suggestion.
if (!alreadySeen.contains(prevWord)) {
diff --git a/java/src/com/android/inputmethod/research/JsonUtils.java b/java/src/com/android/inputmethod/research/JsonUtils.java
index 1dfd01c69..ceba08d47 100644
--- a/java/src/com/android/inputmethod/research/JsonUtils.java
+++ b/java/src/com/android/inputmethod/research/JsonUtils.java
@@ -98,7 +98,7 @@ import java.util.Map;
jsonWriter.beginArray();
final int size = words.size();
for (int j = 0; j < size; j++) {
- final SuggestedWordInfo wordInfo = words.getWordInfo(j);
+ final SuggestedWordInfo wordInfo = words.getInfo(j);
jsonWriter.value(wordInfo.toString());
}
jsonWriter.endArray();