Skip to content

Commit 0480d37

Browse files
Clean up unused codes at RadioButtonHandler.Gtk.cs
1 parent ce1c06f commit 0480d37

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Core/src/Handlers/RadioButton/RadioButtonHandler.Gtk.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@ protected override RadioButton CreatePlatformView()
1515
protected override void ConnectHandler(RadioButton platformView)
1616
{
1717
platformView.Toggled += OnClicked;
18-
// base.ConnectHandler(platformView);
1918
}
2019

2120
protected override void DisconnectHandler(RadioButton platformView)
2221
{
2322
platformView.Toggled -= OnClicked;
24-
// base.DisconnectHandler(platformView);
2523
}
2624

2725
[MissingMapper]
@@ -31,14 +29,12 @@ public static void MapIsChecked(IRadioButtonHandler handler, IRadioButton radioB
3129
{
3230
if (handler.PlatformView is RadioButton rb)
3331
rb.UpdateIsChecked(radioButton);
34-
// handler.PlatformView?.UpdateIsChecked(radioButton);
3532
}
3633

3734
public static void MapContent(IRadioButtonHandler handler, IRadioButton radioButton)
3835
{
3936
if (handler.PlatformView is RadioButton rb)
4037
rb.UpdateContent(radioButton);
41-
// handler.PlatformView?.UpdateContent(radioButton);
4238
}
4339

4440
public static void MapTextColor(IRadioButtonHandler handler, ITextStyle textStyle)

0 commit comments

Comments
 (0)