Skip to content

Commit 5a0764e

Browse files
committed
[GH Usage] Fix inconsistent code layout
1 parent a0ef810 commit 5a0764e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/NuGetGallery.Services/Storage/ContentObjectService.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ await Refresh<SymbolsConfiguration>(ServicesConstants.ContentNames.SymbolsConfig
4949
await Refresh<TyposquattingConfiguration>(ServicesConstants.ContentNames.TyposquattingConfiguration) ??
5050
new TyposquattingConfiguration();
5151

52-
var reposCache = await Refresh<IReadOnlyCollection<RepositoryInformation>>(ServicesConstants.ContentNames.NuGetPackagesGitHubDependencies) ??
53-
Array.Empty<RepositoryInformation>();
52+
var reposCache =
53+
await Refresh<IReadOnlyCollection<RepositoryInformation>>(ServicesConstants.ContentNames.NuGetPackagesGitHubDependencies) ??
54+
Array.Empty<RepositoryInformation>();
5455

5556
GitHubUsageConfiguration = new GitHubUsageConfiguration(reposCache);
5657
}

0 commit comments

Comments
 (0)