Skip to content

Commit

Permalink
refactor(android): remove unnecessary comment
Browse files Browse the repository at this point in the history
  • Loading branch information
iPel committed Nov 16, 2023
1 parent ffc2445 commit fc196d6
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,26 +162,21 @@ public void setReturnKeyType(HippyTextInput view, String returnKeyType) {
break;
case "next":
returnKeyFlag = EditorInfo.IME_ACTION_NEXT;
// view.setSingleLine(true);
break;
case "none":
returnKeyFlag = EditorInfo.IME_ACTION_NONE;
break;
case "previous":
returnKeyFlag = EditorInfo.IME_ACTION_PREVIOUS;
// view.setSingleLine(true);
break;
case "search":
returnKeyFlag = EditorInfo.IME_ACTION_SEARCH;
// view.setSingleLine(true);
break;
case "send":
returnKeyFlag = EditorInfo.IME_ACTION_SEND;
// view.setSingleLine(true);
break;
case "done":
returnKeyFlag = EditorInfo.IME_ACTION_DONE;
// view.setSingleLine(true);
break;
}
}
Expand Down

0 comments on commit fc196d6

Please sign in to comment.