From a30ef2c400abfde6b640abe3faa8fe486dcd99df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Trzci=C5=84ski?= Date: Mon, 19 Dec 2022 22:47:50 +0100 Subject: [PATCH] PowerControl: Remove delegates from `MenuItemWithOptions` --- PowerControl/Menu/MenuItemWithOptions.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/PowerControl/Menu/MenuItemWithOptions.cs b/PowerControl/Menu/MenuItemWithOptions.cs index 9182214..af8256f 100644 --- a/PowerControl/Menu/MenuItemWithOptions.cs +++ b/PowerControl/Menu/MenuItemWithOptions.cs @@ -2,10 +2,6 @@ namespace PowerControl.Menu { public class MenuItemWithOptions : MenuItem { - public delegate object CurrentValueDelegate(); - public delegate object[] OptionsValueDelegate(); - public delegate object ApplyValueDelegate(object selected); - public IList Options { get; set; } = new List(); public Object? SelectedOption { get; set; } public Object? ActiveOption { get; set; }