Small cleanup

Change-Id: I2b81450f99d7b4493ba0fc5e502f4333b8db48cd
main
Ken Wakasa 2014-10-24 19:47:26 +09:00
parent dd5737b0fa
commit 23a357d71d
2 changed files with 1 additions and 3 deletions

View File

@ -296,8 +296,6 @@ public final class Constants {
return "[" + sb + "]";
}
public static final int MAX_INT_BIT_COUNT = 32;
/**
* Screen metrics (a.k.a. Device form factor) constants of
* {@link com.android.inputmethod.latin.R.integer#config_screen_metrics}.

View File

@ -271,7 +271,7 @@ final class EmojiCategory {
}
private static final Long getCategoryKeyboardMapKey(final int categoryId, final int id) {
return (((long) categoryId) << Constants.MAX_INT_BIT_COUNT) | id;
return (((long) categoryId) << Integer.SIZE) | id;
}
public DynamicGridKeyboard getKeyboard(final int categoryId, final int id) {