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

Commit d4b53377 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Remove unused method

Bug: 4521802
Change-Id: Iae649f8b77b3bb144ee7eedbb6545e237fa79a17
parent 0a5345c7
Loading
Loading
Loading
Loading
+5 −13
Original line number Diff line number Diff line
@@ -329,36 +329,28 @@ public class PointerTracker {
        return mKeyDetector.getKeyIndexAndNearbyCodes(x, y, null);
    }

    public boolean isSpaceKey(int keyIndex) {
        Key key = getKey(keyIndex);
        return key != null && key.mCode == Keyboard.CODE_SPACE;
    }

    private void setReleasedKeyGraphics(int keyIndex) {
        mDrawingProxy.dismissKeyPreview(this);
        final Key key = getKey(keyIndex);
        if (key != null) {
        if (key != null && key.isEnabled()) {
            key.onReleased();
            mDrawingProxy.invalidateKey(key);
        }
    }

    private void setPressedKeyGraphics(int keyIndex) {
        if (isKeyPreviewRequired(keyIndex)) {
            mDrawingProxy.showKeyPreview(keyIndex, this);
        }
        final Key key = getKey(keyIndex);
        if (key != null && key.isEnabled()) {
            if (isKeyPreviewRequired(key)) {
                mDrawingProxy.showKeyPreview(keyIndex, this);
            }
            key.onPressed();
            mDrawingProxy.invalidateKey(key);
        }
    }

    // The modifier key, such as shift key, should not show its key preview.
    private boolean isKeyPreviewRequired(int keyIndex) {
        final Key key = getKey(keyIndex);
        if (key == null || !key.isEnabled())
            return false;
    private static boolean isKeyPreviewRequired(Key key) {
        final int code = key.mCode;
        if (isModifierCode(code) || code == Keyboard.CODE_DELETE
                || code == Keyboard.CODE_ENTER || code == Keyboard.CODE_SPACE)