Killed a bunch of logging statements

This commit is contained in:
alzeih
2010-03-18 19:50:11 +13:00
parent ec54448994
commit 8e5a5552c4
10 changed files with 1 additions and 17 deletions

View File

@@ -60,13 +60,11 @@ namespace OpenRA.Graphics
foreach (XmlElement eSequence in eCursor.SelectNodes("./sequence"))
cursors.Add(eSequence.GetAttribute("name"), new CursorSequence(cursorSrc, eSequence));
Log.Write("* LoadSequencesForCursor() done");
}
static void LoadSequencesForUnit(XmlElement eUnit)
{
string unitName = eUnit.GetAttribute("name");
// Log.Write("Loading sequence {0}", unitName);
try {
var sequences = eUnit.SelectNodes("./sequence").OfType<XmlElement>()
.Select(e => new Sequence(unitName, e))