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

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

Get rid of unused CODE_HAPTIC_AND_AUDIO_FEEDBACK

Bug: 6523953
Change-Id: Ibea6c74d00e956116f492a3bedfe40e580b4c316
parent fd08b439
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -1154,7 +1154,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen

    // Virtual codes representing custom requests.  These are used in onCustomRequest() below.
    public static final int CODE_SHOW_INPUT_METHOD_PICKER = 1;
    public static final int CODE_HAPTIC_AND_AUDIO_FEEDBACK = 2;

    @Override
    public boolean onCustomRequest(int requestCode) {
@@ -1167,9 +1166,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
                return true;
            }
            return false;
        case CODE_HAPTIC_AND_AUDIO_FEEDBACK:
            hapticAndAudioFeedback(Keyboard.CODE_UNSPECIFIED);
            return true;
        }
        return false;
    }
@@ -2265,6 +2261,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
        }
    }

    // TODO: Remove this method from {@link LatinIME} and move {@link FeedbackManager} to
    // {@link KeyboardSwitcher}.
    public void hapticAndAudioFeedback(final int primaryCode) {
        mFeedbackManager.hapticAndAudioFeedback(primaryCode, mKeyboardSwitcher.getKeyboardView());
    }