removed prints

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-12-08 18:15:16 -06:00
parent 0842998c97
commit 84ccbac762
2 changed files with 0 additions and 4 deletions

View File

@ -133,7 +133,6 @@ open class CheckboxBase: Control, Accessable, DataTrackable, BinaryColorable, Er
_showError = newValue
didChange()
}
print("checkbox showError:\(_showError)")
}
}

View File

@ -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