remove useless .ToString() calls in replay browsers

This commit is contained in:
Chris Forbes
2011-10-19 19:50:02 +13:00
parent 03ddbac83b
commit 10733c3a31
2 changed files with 2 additions and 2 deletions

View File

@@ -84,7 +84,7 @@ namespace OpenRA.Mods.Cnc.Widgets.Logic
} }
catch (Exception e) catch (Exception e)
{ {
Log.Write("debug", "Exception while parsing replay: {0}", e.ToString()); Log.Write("debug", "Exception while parsing replay: {0}", e);
currentSummary = null; currentSummary = null;
currentMap = null; currentMap = null;
} }

View File

@@ -73,7 +73,7 @@ namespace OpenRA.Mods.RA.Widgets.Logic
} }
catch(Exception e) catch(Exception e)
{ {
Log.Write("debug", "Exception while parsing replay: {0}", e.ToString()); Log.Write("debug", "Exception while parsing replay: {0}", e);
currentReplay = null; currentReplay = null;
} }
} }