removed override

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2022-08-11 10:56:37 -05:00
parent 21686bbcd1
commit db018ac32b

View File

@ -10,16 +10,7 @@ import UIKit
import VDSColorTokens
import VDSFormControlsTokens
public class RadioButton: RadioButtonBase<DefaultRadioButtonModel>{
//this is where the code would go for the controller
public override func toggleAndAction() {
if let didSelect = self.didSelect {
didSelect(model)
} else {
super.toggleAndAction()
}
}
}
public class RadioButton: RadioButtonBase<DefaultRadioButtonModel>{}
public struct RadioButtonGroupModel: SelectorGroupModel{
public typealias SelectorType = DefaultRadioButtonModel