From 90c948ebc34525df26c82ecef1ef19d46dad82cb Mon Sep 17 00:00:00 2001 From: Hellhake Date: Thu, 1 Jan 2015 23:10:29 +0100 Subject: [PATCH] Fix StyleCop warnings in OpenRA.Utility --- OpenRA.Utility/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Utility/Program.cs b/OpenRA.Utility/Program.cs index 8b79d8f580..e15ee6f45a 100644 --- a/OpenRA.Utility/Program.cs +++ b/OpenRA.Utility/Program.cs @@ -50,7 +50,7 @@ namespace OpenRA.Utility try { - var action = Exts.WithDefault((a,b) => PrintUsage(actions), () => actions[args[0]]); + var action = Exts.WithDefault((a, b) => PrintUsage(actions), () => actions[args[0]]); action(modData, args); } catch (Exception e)