Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit f3ca06b

Browse files
Cleanup
1 parent a28d67c commit f3ca06b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GitHub.App/ViewModels/GitHubPane/PullRequestAnnotationsViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ void Load(PullRequestDetailModel pullRequest)
130130
AnnotationsDictionary = checkSuiteRun.checkRun.Annotations
131131
.GroupBy(annotation => annotation.Path)
132132
.ToDictionary(
133-
group => group.Key,
134-
group => (IReadOnlyList<IPullRequestAnnotationItemViewModel>) group
133+
grouping => grouping.Key,
134+
grouping => (IReadOnlyList<IPullRequestAnnotationItemViewModel>) grouping
135135
.Select(annotation => new PullRequestAnnotationItemViewModel(checkSuiteRun.checkSuite, checkSuiteRun.checkRun, annotation, session, pullRequestEditorService)));
136136
}
137137
finally

0 commit comments

Comments
 (0)