Skip to content

Commit

Permalink
Fix more code mis-indentations
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Oct 12, 2020
1 parent 69e32b2 commit 403aefb
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions BatchDotnetTutorialFfmpeg/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@ private static async Task CreatePoolIfNotExistAsync(BatchClient batchClient, str
{
new ApplicationPackageReference
{
ApplicationId = appPackageId,
Version = appPackageVersion
ApplicationId = appPackageId,
Version = appPackageVersion
}
};

Expand Down Expand Up @@ -347,14 +347,13 @@ private static async Task CreatePoolIfNotExistAsync(BatchClient batchClient, str
/// <param name="poolId">ID of the CloudPool object in which to create the job.</param>
private static async Task CreateJobAsync(BatchClient batchClient, string jobId, string poolId)
{

Console.WriteLine("Creating job [{0}]...", jobId);
Console.WriteLine("Creating job [{0}]...", jobId);

CloudJob job = batchClient.JobOperations.CreateJob();
job.Id = jobId;
job.PoolInformation = new PoolInformation { PoolId = poolId };
CloudJob job = batchClient.JobOperations.CreateJob();
job.Id = jobId;
job.PoolInformation = new PoolInformation { PoolId = poolId };

await job.CommitAsync();
await job.CommitAsync();
}


Expand Down

0 comments on commit 403aefb

Please sign in to comment.