aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/Suggest.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2010-12-09 21:06:26 +0900
committerTadashi G. Takaoka <takaoka@google.com>2010-12-09 21:54:51 +0900
commit9502cc177cc53678c9ddcc01d4d046f69220e13b (patch)
tree50898a64d22d9d96e8c06354a974b7c6b8685865 /java/src/com/android/inputmethod/latin/Suggest.java
parent55b9d333c5d260cb5da3f6a2d872bda8c03478d7 (diff)
downloadlatinime-9502cc177cc53678c9ddcc01d4d046f69220e13b.tar.gz
latinime-9502cc177cc53678c9ddcc01d4d046f69220e13b.tar.xz
latinime-9502cc177cc53678c9ddcc01d4d046f69220e13b.zip
Remove LatinIME prefix from classes
This change also cleanups preference key string constants Change-Id: I58510f220a90d00d71a935731abeab87384675bb
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Suggest.java')
-rw-r--r--java/src/com/android/inputmethod/latin/Suggest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java
index 2f188879c..a6df187e6 100644
--- a/java/src/com/android/inputmethod/latin/Suggest.java
+++ b/java/src/com/android/inputmethod/latin/Suggest.java
@@ -284,7 +284,7 @@ public class Suggest implements Dictionary.WordCallback {
&& mSuggestions.size() > 0 && mPriorities.length > 0) {
// TODO: when the normalized score of the first suggestion is nearly equals to
// the normalized score of the second suggestion, behave less aggressive.
- final double normalizedScore = LatinIMEUtil.calcNormalizedScore(
+ final double normalizedScore = Utils.calcNormalizedScore(
mOriginalWord, mSuggestions.get(0), mPriorities[0]);
if (LatinImeLogger.sDBG) {
Log.d(TAG, "Normalized " + mOriginalWord + "," + mSuggestions.get(0) + ","