From db018ac32b4817c3e9bf9dd4c1e87950e09efdd4 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 11 Aug 2022 10:56:37 -0500 Subject: [PATCH] removed override Signed-off-by: Matt Bruce --- VDS/Components/RadioButton/RadioButton.swift | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/VDS/Components/RadioButton/RadioButton.swift b/VDS/Components/RadioButton/RadioButton.swift index 8f1d5a56..3ef079c4 100644 --- a/VDS/Components/RadioButton/RadioButton.swift +++ b/VDS/Components/RadioButton/RadioButton.swift @@ -10,16 +10,7 @@ import UIKit import VDSColorTokens import VDSFormControlsTokens -public class RadioButton: RadioButtonBase{ - //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{} public struct RadioButtonGroupModel: SelectorGroupModel{ public typealias SelectorType = DefaultRadioButtonModel