Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 9642637

Browse files
Code formatting
1 parent 1155bda commit 9642637

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/GitHub.Api/Git/Repository.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,9 @@ private void RepositoryManagerOnGitStatusUpdated(GitStatus gitStatus)
383383
private void RepositoryManagerOnGitAheadBehindStatusUpdated(GitAheadBehindStatus aheadBehindStatus)
384384
{
385385
new ActionTask(CancellationToken.None, () => {
386-
CurrentAhead = aheadBehindStatus.Ahead;
387-
CurrentBehind = aheadBehindStatus.Behind;
388-
})
389-
{ Affinity = TaskAffinity.UI }.Start();
386+
CurrentAhead = aheadBehindStatus.Ahead;
387+
CurrentBehind = aheadBehindStatus.Behind;
388+
}) { Affinity = TaskAffinity.UI }.Start();
390389
}
391390

392391
private void RepositoryManagerOnGitLogUpdated(List<GitLogEntry> gitLogEntries)

0 commit comments

Comments
 (0)