Removed accidentally committed print()

This commit is contained in:
dankito 2020-08-10 00:47:33 +02:00
parent d2987dfb35
commit 7d0080477d
1 changed files with 3 additions and 5 deletions

View File

@ -19,11 +19,9 @@ struct LabelledUIKitTextField: View {
private var focusTextFieldBinding: Binding<Bool> { private var focusTextFieldBinding: Binding<Bool> {
Binding<Bool>( Binding<Bool>(
get: {print("Getting focusTextFieldBinding for \(self.focusTextField)") get: { self.focusTextField },
return self.focusTextField }, set: { self.focusTextField = $0 }
set: { )
self.focusTextField = $0
})
} }