From 69a869a44d0735a3999531aec35cc85795ac0984 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Fri, 9 Dec 2011 22:08:25 +1300 Subject: [PATCH] fix empty array init style in Manifest --- OpenRA.FileFormats/Manifest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.FileFormats/Manifest.cs b/OpenRA.FileFormats/Manifest.cs index a1504bbc97..7752928577 100644 --- a/OpenRA.FileFormats/Manifest.cs +++ b/OpenRA.FileFormats/Manifest.cs @@ -61,7 +61,7 @@ namespace OpenRA.FileFormats static string[] YamlList(Dictionary yaml, string key) { if (!yaml.ContainsKey(key)) - return new string[ 0 ]; + return new string[] {}; return yaml[key].NodesDict.Keys.ToArray(); }