diff --git a/OpenRA.Utility/Program.cs b/OpenRA.Utility/Program.cs index b399fbefc7..cdb66914e5 100644 --- a/OpenRA.Utility/Program.cs +++ b/OpenRA.Utility/Program.cs @@ -19,7 +19,6 @@ namespace OpenRA.Utility { class Program { - static Dictionary> actions; const int PipeBufferSize = 1024 * 1024; static PipeSecurity MakePipeSecurity() @@ -35,7 +34,7 @@ namespace OpenRA.Utility static void Main(string[] args) { - actions = new Dictionary>() + var actions = new Dictionary>() { { "--extract-zip-inner", Command.ExtractZip }, { "--install-ra-packages-inner", Command.InstallRAPackages },