Skip to content

Commit a79fc31

Browse files
committed
dotnet format
1 parent ac6d839 commit a79fc31

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/GitVersionCore.Tests/Core/RepositoryExtensionsTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public override DirectReference Add(string name, ObjectId targetId)
166166

167167
public override Reference Add(string name, string canonicalRefNameOrObjectish)
168168
{
169-
return this.reference = new TestableReference(canonicalRefNameOrObjectish);;
169+
return this.reference = new TestableReference(canonicalRefNameOrObjectish);
170170
}
171171

172172
public override Reference UpdateTarget(Reference directRef, ObjectId targetId)

src/GitVersionCore/Core/GitPreparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ private void NormalizeGitDirectory(string gitDirectory, bool noFetch, string cur
262262
if (matchingCurrentBranch != null)
263263
{
264264
log.Info($"Checking out local branch '{currentBranch}'.");
265-
repository.Commands.Checkout( matchingCurrentBranch);
265+
repository.Commands.Checkout(matchingCurrentBranch);
266266
}
267267
else if (localBranchesWhereCommitShaIsHead.Count > 1)
268268
{

src/GitVersionCore/Core/IGitRepositoryCommands.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,6 @@ public interface IGitRepositoryCommands
3232
void Unstage(string path);
3333
void Unstage(string path, ExplicitPathsOptions explicitPathsOptions);
3434
void Unstage(IEnumerable<string> paths);
35-
void Unstage(IEnumerable<string> paths, ExplicitPathsOptions explicitPathsOptions); }
35+
void Unstage(IEnumerable<string> paths, ExplicitPathsOptions explicitPathsOptions);
36+
}
3637
}

0 commit comments

Comments
 (0)