Skip to content

Commit a2d64d8

Browse files
committed
deleted debug prints
1 parent c6e1045 commit a2d64d8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

compose/ui/ui/src/uikitMain/kotlin/androidx/compose/ui/platform/UIKitTextInputService.uikit.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,6 @@ internal class UIKitTextInputService(
558558
).also {
559559
view.addSubview(scrollView)
560560

561-
// it.setTintColor(UIColor.blackColor) // forward colors here
562561
scrollView.textView = it
563562

564563
// scrollView.backgroundColor = if (useNativeInputHandling) UIColor.redColor.colorWithAlphaComponent(0.5) else UIColor.clearColor
@@ -700,7 +699,6 @@ internal class UIKitTextInputService(
700699
* @param text A string object representing the character typed on the system keyboard.
701700
*/
702701
override fun insertText(text: String) {
703-
println("insertText: $text")
704702
if (text == "\n") {
705703
if (runImeActionIfRequired()) {
706704
return
@@ -777,7 +775,6 @@ internal class UIKitTextInputService(
777775
* @param text A string to replace the text in range.
778776
*/
779777
override fun replaceRange(range: TextRange, text: String) {
780-
println("replaceRange: $text in range = $range")
781778
sendEditCommand(
782779
SetComposingRegionCommand(range.start, range.end),
783780
SetComposingTextCommand(text, 1),

0 commit comments

Comments
 (0)