From 770dbcee52eba8544fb3df8a478aa2386a16f5ab Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Wed, 2 Mar 2011 22:18:16 +1300 Subject: [PATCH] tweak; save a bit of memory --- OpenRA.Mods.RA/Player/ClassicProductionQueue.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenRA.Mods.RA/Player/ClassicProductionQueue.cs b/OpenRA.Mods.RA/Player/ClassicProductionQueue.cs index 4ac80e99a3..1d66bff5e8 100755 --- a/OpenRA.Mods.RA/Player/ClassicProductionQueue.cs +++ b/OpenRA.Mods.RA/Player/ClassicProductionQueue.cs @@ -33,9 +33,9 @@ namespace OpenRA.Mods.RA .Any(); base.Tick(self); - } - - ActorInfo[] None = new ActorInfo[]{}; + } + + static ActorInfo[] None = { }; public override IEnumerable AllItems() { return QueueActive ? base.AllItems() : None;