From 074700ddfed5f4584ca444b7cac7f230b93de5e9 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 1 Aug 2022 13:34:14 -0500 Subject: [PATCH] removed prints Signed-off-by: Matt Bruce --- VDS/Components/Toggle/VDSToggle.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/VDS/Components/Toggle/VDSToggle.swift b/VDS/Components/Toggle/VDSToggle.swift index d23ddea4..2dec377d 100644 --- a/VDS/Components/Toggle/VDSToggle.swift +++ b/VDS/Components/Toggle/VDSToggle.swift @@ -328,7 +328,6 @@ import Combine } public override func touchesEnded(_ touches: Set, with event: UIEvent?) { - print("touchesEnded") knobReformAnimation() // Action only occurs of the user lifts up from withing acceptable region of the toggle. let value = 20.0 @@ -339,7 +338,6 @@ import Combine } open override func touchesCancelled(_ touches: Set, with event: UIEvent?) { - print("touchesCancelled") knobReformAnimation() sendActions(for: .touchCancel) }