From 56a72f62a2866f8c431587f3b43dace086f1e70c Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 8 Sep 2022 16:18:59 -0500 Subject: [PATCH] removed comments Signed-off-by: Matt Bruce --- VDS/Components/RadioBox/RadioBoxGroup.swift | 2 -- VDS/Components/RadioButton/RadioButtonGroup.swift | 10 +++------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/VDS/Components/RadioBox/RadioBoxGroup.swift b/VDS/Components/RadioBox/RadioBoxGroup.swift index a1cc6261..a9099991 100644 --- a/VDS/Components/RadioBox/RadioBoxGroup.swift +++ b/VDS/Components/RadioBox/RadioBoxGroup.swift @@ -11,8 +11,6 @@ import UIKit public class RadioBoxGroup: RadioBoxGroupBase { public override func didSelect(_ selectedControl: ModelHandlerType) { - //only changes local model in control, - //this is now disconnected from the parent model for (index, control) in selectorViews.enumerated() { //only change the old and new if control == selectedControl { diff --git a/VDS/Components/RadioButton/RadioButtonGroup.swift b/VDS/Components/RadioButton/RadioButtonGroup.swift index 343df9dd..ab8c0539 100644 --- a/VDS/Components/RadioButton/RadioButtonGroup.swift +++ b/VDS/Components/RadioButton/RadioButtonGroup.swift @@ -11,8 +11,6 @@ import UIKit public class RadioButtonGroup: RadioButtonGroupBase { public override func didSelect(_ selectedControl: ModelHandlerType) { - //only changes local model in control, - //this is now disconnected from the parent model for (index, control) in selectorViews.enumerated() { //only change the old and new if control == selectedControl { @@ -20,6 +18,9 @@ public class RadioButtonGroup: RadioButtonGroupBase