Fix a collection of whitespace-style issues in Mods.Common.

This commit is contained in:
Paul Chote
2014-12-14 17:04:37 +13:00
parent 299a933dac
commit ecd3809bc2
51 changed files with 142 additions and 149 deletions

View File

@@ -18,12 +18,12 @@ namespace OpenRA.Mods.Common.Orders
{
readonly Func<bool> useDeployCursor;
public DeployOrderTargeter( string order, int priority )
: this( order, priority, () => true )
public DeployOrderTargeter(string order, int priority)
: this(order, priority, () => true)
{
}
public DeployOrderTargeter( string order, int priority, Func<bool> useDeployCursor )
public DeployOrderTargeter(string order, int priority, Func<bool> useDeployCursor)
{
this.OrderID = order;
this.OrderPriority = priority;

View File

@@ -20,7 +20,7 @@ namespace OpenRA.Mods.Common.Orders
public EnterAlliedActorTargeter(string order, int priority,
Func<Actor, bool> canTarget, Func<Actor, bool> useEnterCursor)
: base (order, priority, "enter", false, true)
: base(order, priority, "enter", false, true)
{
this.canTarget = canTarget;
this.useEnterCursor = useEnterCursor;