remove useless .ToString() calls in replay browsers
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user