aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2012-01-13 11:14:07 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-01-13 11:14:07 -0800
commitc2d44eeded39e3c32f91e19b57ed3a97a56419d8 (patch)
treef319f0c7d7c87d7da7dd2a6c5482366ae45f30f3 /tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java
parent77ae64d8ab817aeb90c7b14cd2ecf34b3ba7e9a2 (diff)
parent4cabb049718003341edc75be23fbd87a7eea9cc6 (diff)
downloadlatinime-c2d44eeded39e3c32f91e19b57ed3a97a56419d8.tar.gz
latinime-c2d44eeded39e3c32f91e19b57ed3a97a56419d8.tar.xz
latinime-c2d44eeded39e3c32f91e19b57ed3a97a56419d8.zip
am 4cabb049: Use KeyboardSet for unit test
* commit '4cabb049718003341edc75be23fbd87a7eea9cc6': Use KeyboardSet for unit test
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java b/tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java
index 863c2b254..74fadf76b 100644
--- a/tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java
+++ b/tests/src/com/android/inputmethod/latin/UserBigramSuggestHelper.java
@@ -16,11 +16,11 @@
package com.android.inputmethod.latin;
-import com.android.inputmethod.keyboard.KeyboardId;
-
import android.content.Context;
import android.text.TextUtils;
+import com.android.inputmethod.keyboard.KeyboardSet;
+
import java.io.File;
import java.util.Locale;
import java.util.StringTokenizer;
@@ -31,8 +31,8 @@ public class UserBigramSuggestHelper extends SuggestHelper {
public UserBigramSuggestHelper(final Context context, final File dictionaryPath,
final long startOffset, final long length, final int userBigramMax,
- final int userBigramDelete, final KeyboardId keyboardId, final Locale locale) {
- super(context, dictionaryPath, startOffset, length, keyboardId, locale);
+ final int userBigramDelete, final KeyboardSet keyboardSet, final Locale locale) {
+ super(context, dictionaryPath, startOffset, length, keyboardSet, locale);
mContext = context;
mUserBigram = new UserBigramDictionary(context, null, locale.toString(),
Suggest.DIC_USER);