1
0
forked from GitHub/gf-core

remove the unnecessary logging of the completion string

This commit is contained in:
kr.angelov
2014-03-12 10:57:11 +00:00
parent 23f603dabc
commit 42e185124e

View File

@@ -3,7 +3,6 @@ package org.grammaticalframework.ui.android;
import android.inputmethodservice.InputMethodService;
import android.text.InputType;
import android.text.method.MetaKeyKeyListener;
import android.util.Log;
import android.view.KeyCharacterMap;
import android.view.KeyEvent;
import android.view.View;
@@ -11,9 +10,6 @@ import android.view.inputmethod.CompletionInfo;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputConnection;
import java.util.ArrayList;
import java.util.List;
public class TranslatorInputMethodService extends InputMethodService
implements android.inputmethodservice.KeyboardView.OnKeyboardActionListener {
@@ -437,7 +433,6 @@ public class TranslatorInputMethodService extends InputMethodService
mCompletions =
mTranslator.lookupWordPrefix(mComposing.toString());
setSuggestions(mCompletions, true, true);
Log.d("KEYBOARD", mComposing.toString());
} else {
setSuggestions(null, false, false);
}