* commit '647827cc0171f7dc5d425dea5754fca3df49d036': Get rid of unused CODE_HAPTIC_AND_AUDIO_FEEDBACK
This commit is contained in:
commit
865df41ba8
1 changed files with 2 additions and 4 deletions
|
@ -1163,7 +1163,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) {
|
||||
|
@ -1176,9 +1175,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;
|
||||
}
|
||||
|
@ -2274,6 +2270,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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue