Remove some redundant logging

This commit is contained in:
Paul Chote
2010-07-03 15:33:28 +12:00
parent 02e4d7d270
commit d04d943fe5
3 changed files with 2 additions and 8 deletions

View File

@@ -115,10 +115,6 @@ namespace OpenRA
// TODO: Do this nicer
static Dictionary<string, MapStub> FindMaps(string[] mods)
{
Console.WriteLine("Finding maps");
foreach (var mod in mods)
Console.WriteLine(mod);
var paths = new[] { "maps/" }.Concat(mods.Select(m => "mods/" + m + "/maps/"))
.Where(p => Directory.Exists(p))
.SelectMany(p => Directory.GetDirectories(p)).ToList();