Fix IDE0090

This commit is contained in:
RoosterDragon
2023-04-05 19:34:12 +01:00
committed by Pavel Penev
parent 164abfdae1
commit 8a285f9b19
385 changed files with 790 additions and 794 deletions

View File

@@ -16,7 +16,7 @@ namespace OpenRA.Widgets
{
public static class ChromeMetrics
{
static Dictionary<string, string> data = new Dictionary<string, string>();
static Dictionary<string, string> data = new();
public static void Initialize(ModData modData)
{

View File

@@ -25,15 +25,15 @@ namespace OpenRA.Widgets
public static Widget Root = new ContainerWidget();
public static TickTime LastTickTime = new TickTime(() => Timestep, Game.RunTime);
public static TickTime LastTickTime = new(() => Timestep, Game.RunTime);
static readonly Stack<Widget> WindowList = new Stack<Widget>();
static readonly Stack<Widget> WindowList = new();
public static Widget MouseFocusWidget;
public static Widget KeyboardFocusWidget;
public static Widget MouseOverWidget;
static readonly Mediator Mediator = new Mediator();
static readonly Mediator Mediator = new();
public static void CloseWindow()
{
@@ -185,7 +185,7 @@ namespace OpenRA.Widgets
{
string defaultCursor = null;
public readonly List<Widget> Children = new List<Widget>();
public readonly List<Widget> Children = new();
// Info defined in YAML
public string Id = null;
@@ -644,7 +644,7 @@ namespace OpenRA.Widgets
public sealed class Mediator
{
readonly TypeDictionary types = new TypeDictionary();
readonly TypeDictionary types = new();
public void Subscribe<T>(T instance)
{

View File

@@ -18,7 +18,7 @@ namespace OpenRA
{
public class WidgetLoader
{
readonly Dictionary<string, MiniYamlNode> widgets = new Dictionary<string, MiniYamlNode>();
readonly Dictionary<string, MiniYamlNode> widgets = new();
readonly ModData modData;
public WidgetLoader(ModData modData)