Skip to content

Commit

Permalink
Update KeyboardImpl.kt (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgCantor authored Dec 5, 2023
1 parent e07ac1a commit 04082e0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ class KeyboardImpl(
* Splits the text into characters and type them one by one
* to prevent missing characters in the input field caused by very fast typing speed
*/
text.map { char -> "input text $char" }
.forEach { command -> adbServer.performShell(command) }
text.forEach { char -> adbServer.performShell("input text $char") }
}

/**
Expand Down

0 comments on commit 04082e0

Please sign in to comment.