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

Commit 0126da0

Browse files
authored
Fixicate linq query formatting
1 parent e35fa1f commit 0126da0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/UI/PUblishView.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ private void PopulateView()
9494
Logger.Trace("Loaded {0} organizations", organizations.Count);
9595

9696
var organizationLogins = organizations
97-
.OrderBy(organization => organization.Login).Select(organization => organization.Login);
97+
.OrderBy(organization => organization.Login)
98+
.Select(organization => organization.Login);
9899

99100
owners = owners.Union(organizationLogins).ToArray();
100101
isBusy = false;

0 commit comments

Comments
 (0)