Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 23a357d7 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Small cleanup

Change-Id: I2b81450f99d7b4493ba0fc5e502f4333b8db48cd
parent dd5737b0
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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}.
+1 −1
Original line number Diff line number Diff line
@@ -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) {