Remove custom Stopwatch wrapper
Remove the redirection (that doesn't offer any new functionality) and replace it with the familiar System.Diagnostics.Stopwatch.
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
#endregion
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using OpenRA.Graphics;
|
||||
@@ -187,7 +188,7 @@ namespace OpenRA.Mods.RA
|
||||
|
||||
void BuildDomains(World world)
|
||||
{
|
||||
var timer = new Stopwatch();
|
||||
var timer = Stopwatch.StartNew();
|
||||
var map = world.Map;
|
||||
|
||||
var domain = 1;
|
||||
|
||||
Reference in New Issue
Block a user