diff options
author | 2013-07-31 05:19:26 -0700 | |
---|---|---|
committer | 2013-07-31 05:19:26 -0700 | |
commit | 746c9a4aff44743c44e59246fc627f4eceafb1cc (patch) | |
tree | f329ee6ca96c82a272a93663195b5fb693037b84 /java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java | |
parent | ac4ec539b51c0f0dfb6add09ff3e68593bc9c608 (diff) | |
parent | 853d0fd122ab8fd06ee50217d5f7ff960614a144 (diff) | |
download | latinime-746c9a4aff44743c44e59246fc627f4eceafb1cc.tar.gz latinime-746c9a4aff44743c44e59246fc627f4eceafb1cc.tar.xz latinime-746c9a4aff44743c44e59246fc627f4eceafb1cc.zip |
am 853d0fd1: Refactor the personalization dictionary
* commit '853d0fd122ab8fd06ee50217d5f7ff960614a144':
Refactor the personalization dictionary
Diffstat (limited to 'java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java b/java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java index 100abf5db..d11784454 100644 --- a/java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java +++ b/java/src/com/android/inputmethod/latin/personalization/UserHistoryPredictionDictionary.java @@ -25,10 +25,8 @@ import android.content.SharedPreferences; * Locally gathers stats about the words user types and various other signals like auto-correction * cancellation or manual picks. This allows the keyboard to adapt to the typist over time. */ -public class UserHistoryPredictionDictionary extends PersonalizationPredictionDictionary { - private static final String TAG = UserHistoryPredictionDictionary.class.getSimpleName(); +public class UserHistoryPredictionDictionary extends DynamicPredictionDictionaryBase { private static final String NAME = UserHistoryPredictionDictionary.class.getSimpleName(); - /* package */ UserHistoryPredictionDictionary(final Context context, final String locale, final SharedPreferences sp) { super(context, locale, sp, Dictionary.TYPE_USER_HISTORY); |