From ed6a83db89d93f674f90cbd40519e81f52417938 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sat, 5 Feb 2011 11:51:59 +1300 Subject: [PATCH] reduce scope of OpenRA.Utility.Program.actions --- OpenRA.Utility/Program.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 },