aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2013-12-07 18:56:55 +0900
committerTadashi G. Takaoka <takaoka@google.com>2013-12-07 18:59:13 +0900
commita2bbb1213d41019b23b3df63dbfcaecdd0694ff6 (patch)
tree969629c4b542889fd7e4e0fa40c9724a7f22d16b /java/src
parentf925b1e34a37f78836c00d679524b9462a736b0d (diff)
downloadlatinime-a2bbb1213d41019b23b3df63dbfcaecdd0694ff6.tar.gz
latinime-a2bbb1213d41019b23b3df63dbfcaecdd0694ff6.tar.xz
latinime-a2bbb1213d41019b23b3df63dbfcaecdd0694ff6.zip
Remove obsolete warning message
This is a follow up of I5655c5703b. Change-Id: I4a61689eb275b54648c6112c9f8709e4a9c35a5e
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/keyboard/Key.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/Key.java b/java/src/com/android/inputmethod/keyboard/Key.java
index d3f628dcf..b975b9c70 100644
--- a/java/src/com/android/inputmethod/keyboard/Key.java
+++ b/java/src/com/android/inputmethod/keyboard/Key.java
@@ -28,7 +28,6 @@ import android.graphics.Rect;
import android.graphics.Typeface;
import android.graphics.drawable.Drawable;
import android.text.TextUtils;
-import android.util.Log;
import android.util.Xml;
import com.android.inputmethod.keyboard.internal.KeyDrawParams;
@@ -53,8 +52,6 @@ import java.util.Locale;
* Class for describing the position and characteristics of a single key in the keyboard.
*/
public class Key implements Comparable<Key> {
- private static final String TAG = Key.class.getSimpleName();
-
/**
* The key code (unicode or custom code) that this key generates.
*/
@@ -382,9 +379,6 @@ public class Key implements Comparable<Key> {
mKeyVisualAttributes = KeyVisualAttributes.newInstance(keyAttr);
keyAttr.recycle();
mHashCode = computeHashCode(this);
- if (hasShiftedLetterHint() && TextUtils.isEmpty(mHintLabel)) {
- Log.w(TAG, "hasShiftedLetterHint specified without keyHintLabel: " + this);
- }
}
/**