summaryrefslogtreecommitdiff
path: root/base/src/main/java/com/smartdevicelink/managers/screen/choiceset
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2019-08-21 08:54:40 -0400
committerNicoleYarroch <nicole@livio.io>2019-08-21 08:54:40 -0400
commit6e38a4b105f723bd18abf4615102485f8160baa2 (patch)
treef32793fbe01656e83824c885e80ecfedde10b904 /base/src/main/java/com/smartdevicelink/managers/screen/choiceset
parent29a3c18c0368973d0500bb2ea785d0acdbb59ad5 (diff)
downloadsdl_android-6e38a4b105f723bd18abf4615102485f8160baa2.tar.gz
Removed uneeded deprecated presentKeyboard()
Diffstat (limited to 'base/src/main/java/com/smartdevicelink/managers/screen/choiceset')
-rw-r--r--base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java13
1 files changed, 1 insertions, 12 deletions
diff --git a/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java b/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java
index f55678a47..c936548ba 100644
--- a/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java
+++ b/base/src/main/java/com/smartdevicelink/managers/screen/choiceset/BaseChoiceSetManager.java
@@ -371,20 +371,9 @@ abstract class BaseChoiceSetManager extends BaseSubManager {
* @param initialText - The initial text that is used as a placeholder text. It might not work on some head units.
* @param customKeyboardConfig - the custom keyboard configuration to be used when the keyboard is displayed
* @param listener - A keyboard listener to capture user input
- */
- @Deprecated
- public void presentKeyboard(@NonNull String initialText, @Nullable KeyboardProperties customKeyboardConfig, @NonNull KeyboardListener listener){
- presentKeyboard(initialText, listener, customKeyboardConfig);
- }
-
- /**
- * Presents a keyboard on the Head unit to capture user input
- * @param initialText - The initial text that is used as a placeholder text. It might not work on some head units.
- * @param customKeyboardConfig - the custom keyboard configuration to be used when the keyboard is displayed
- * @param listener - A keyboard listener to capture user input
* @return - A unique id that can be used to cancel this keyboard. If `null`, no keyboard was created.
*/
- public Integer presentKeyboard(@NonNull String initialText, @NonNull KeyboardListener listener, @Nullable KeyboardProperties customKeyboardConfig){
+ public Integer presentKeyboard(@NonNull String initialText, @Nullable KeyboardProperties customKeyboardConfig, @NonNull KeyboardListener listener){
if (initialText == null || initialText.length() == 0){
DebugTool.logError("initialText cannot be an empty string.");
return null;