mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Small cleanup
Change-Id: I2b81450f99d7b4493ba0fc5e502f4333b8db48cd
This commit is contained in:
parent
dd5737b0fa
commit
23a357d71d
@ -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}.
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user