changeset 175:0f144576e5eb

Code tidy-up - remove warnings * Remove unused variable
author IBBoard <dev@ibboard.co.uk>
date Sun, 25 Sep 2011 20:53:47 +0100
parents 1bce8d0baad4
children 9a1763af5fd2
files API/EventListeningWarFoundryLoader.cs
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/API/EventListeningWarFoundryLoader.cs	Sat Sep 24 11:59:57 2011 +0100
+++ b/API/EventListeningWarFoundryLoader.cs	Sun Sep 25 20:53:47 2011 +0100
@@ -9,13 +9,11 @@
 	{
 		private IDictionary<string, GameSystem> gameSystems;
 		private IDictionary<string, Race> races;
-		private IDictionary<string, Army> armies;
 
 		public EventListeningWarFoundryLoader()
 		{
 			gameSystems = new Dictionary<string, GameSystem>();
 			races = new Dictionary<string, Race>();
-			armies = new Dictionary<string, Army>();
 		}
 		
 		public override void RegisterFactory (INativeWarFoundryFactory factory)