From 7d0080477d3b572211ae34d0f5c0b49c8218e23f Mon Sep 17 00:00:00 2001 From: dankito Date: Mon, 10 Aug 2020 00:47:33 +0200 Subject: [PATCH] Removed accidentally committed print() --- .../BankingiOSApp/ui/LabelledUIKitTextField.swift | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift b/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift index c47dba2e..5bd10352 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/LabelledUIKitTextField.swift @@ -19,11 +19,9 @@ struct LabelledUIKitTextField: View { private var focusTextFieldBinding: Binding { Binding( - get: {print("Getting focusTextFieldBinding for \(self.focusTextField)") - return self.focusTextField }, - set: { - self.focusTextField = $0 - }) + get: { self.focusTextField }, + set: { self.focusTextField = $0 } + ) }