Skip to content

Commit a11d8e4

Browse files
committed
remove some space lines.
1 parent 99f9f13 commit a11d8e4

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/Common/Commands.Common/TestMockSupport.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,12 @@ public Delay(int backoffStep = DefaultBackoffStepInMilliseconds, int firstDelay
6666
{
6767
this.backoffStep = backoffStep;
6868
this.maxDelay = maxDelay;
69-
7069
this.nextDelay = firstDelay;
7170
}
7271

7372
public int GetNextDelay()
7473
{
7574
int delay = this.nextDelay;
76-
7775
this.nextDelay += this.backoffStep;
7876
this.nextDelay = Math.Min(maxDelay, this.nextDelay);
7977

src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,7 @@ private DeploymentExtended WaitDeploymentStatus(
334334
if (job != null)
335335
{
336336
job(resourceGroup, deploymentName, basicDeployment);
337-
}
338-
337+
}
339338
deployment = ResourceManagementClient.Deployments.Get(resourceGroup, deploymentName).Deployment;
340339

341340
} while (!status.Any(s => s.Equals(deployment.Properties.ProvisioningState, StringComparison.OrdinalIgnoreCase)));

0 commit comments

Comments
 (0)