diff --git a/VDS/Components/Checkbox/Checkbox.swift b/VDS/Components/Checkbox/Checkbox.swift index 5c9cd4a0..97bd6361 100644 --- a/VDS/Components/Checkbox/Checkbox.swift +++ b/VDS/Components/Checkbox/Checkbox.swift @@ -133,7 +133,6 @@ open class CheckboxBase: Control, Accessable, DataTrackable, BinaryColorable, Er _showError = newValue didChange() } - print("checkbox showError:\(_showError)") } } diff --git a/VDS/Components/RadioSwatch/RadioSwatch.swift b/VDS/Components/RadioSwatch/RadioSwatch.swift index 85a9ac9e..0ee397a7 100644 --- a/VDS/Components/RadioSwatch/RadioSwatch.swift +++ b/VDS/Components/RadioSwatch/RadioSwatch.swift @@ -15,7 +15,6 @@ import Combine public class RadioSwatch: RadioSwatchBase{ //for groups allows "toggle" open override func toggle() { - print("toggle: \(text)") isSelected.toggle() } } @@ -157,7 +156,6 @@ open class RadioSwatchBase: Control, Accessable, DataTrackable, BinaryColorable setAccessibilityHint() setAccessibilityValue(isSelected) setAccessibilityLabel(isSelected) - print("updateView: \(text)") layer.setNeedsDisplay() } @@ -196,7 +194,6 @@ open class RadioSwatchBase: Control, Accessable, DataTrackable, BinaryColorable } open override func draw(_ layer: CALayer, in ctx: CGContext) { - print("draw:\(text)") let drawOuterBorder = isSelected || isHighlighted let backgroundColor = UIColor.clear let borderColor = isSelected ? borderColorConfiguration.getColor(self) : .clear