mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
remove the unnecessary logging of the completion string
This commit is contained in:
@@ -3,7 +3,6 @@ package org.grammaticalframework.ui.android;
|
|||||||
import android.inputmethodservice.InputMethodService;
|
import android.inputmethodservice.InputMethodService;
|
||||||
import android.text.InputType;
|
import android.text.InputType;
|
||||||
import android.text.method.MetaKeyKeyListener;
|
import android.text.method.MetaKeyKeyListener;
|
||||||
import android.util.Log;
|
|
||||||
import android.view.KeyCharacterMap;
|
import android.view.KeyCharacterMap;
|
||||||
import android.view.KeyEvent;
|
import android.view.KeyEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
@@ -11,9 +10,6 @@ import android.view.inputmethod.CompletionInfo;
|
|||||||
import android.view.inputmethod.EditorInfo;
|
import android.view.inputmethod.EditorInfo;
|
||||||
import android.view.inputmethod.InputConnection;
|
import android.view.inputmethod.InputConnection;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
|
|
||||||
public class TranslatorInputMethodService extends InputMethodService
|
public class TranslatorInputMethodService extends InputMethodService
|
||||||
implements android.inputmethodservice.KeyboardView.OnKeyboardActionListener {
|
implements android.inputmethodservice.KeyboardView.OnKeyboardActionListener {
|
||||||
@@ -437,7 +433,6 @@ public class TranslatorInputMethodService extends InputMethodService
|
|||||||
mCompletions =
|
mCompletions =
|
||||||
mTranslator.lookupWordPrefix(mComposing.toString());
|
mTranslator.lookupWordPrefix(mComposing.toString());
|
||||||
setSuggestions(mCompletions, true, true);
|
setSuggestions(mCompletions, true, true);
|
||||||
Log.d("KEYBOARD", mComposing.toString());
|
|
||||||
} else {
|
} else {
|
||||||
setSuggestions(null, false, false);
|
setSuggestions(null, false, false);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user