From 9fa5dcc0556a246f66317d7809eda5fdc3198dfe Mon Sep 17 00:00:00 2001 From: Ivaylo Draganov Date: Thu, 10 Jun 2021 17:34:06 +0300 Subject: [PATCH] Remove unused method in WidgetUtils --- OpenRA.Mods.Common/Widgets/WidgetUtils.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/OpenRA.Mods.Common/Widgets/WidgetUtils.cs b/OpenRA.Mods.Common/Widgets/WidgetUtils.cs index 9fe207c85d..7184b965c2 100644 --- a/OpenRA.Mods.Common/Widgets/WidgetUtils.cs +++ b/OpenRA.Mods.Common/Widgets/WidgetUtils.cs @@ -20,11 +20,6 @@ namespace OpenRA.Mods.Common.Widgets { public static class WidgetUtils { - public static Sprite GetChromeImage(World world, string name) - { - return ChromeProvider.GetImage("chrome-" + world.LocalPlayer.Faction.InternalName, name); - } - public static string GetStatefulImageName(string baseName, bool disabled = false, bool pressed = false, bool hover = false, bool focused = false) { var suffix = disabled ? "-disabled" :