Skip to content

Commit 5a7146c

Browse files
darrelmillerbaywet
andcommitted
Update src/Microsoft.OpenApi/Services/OpenApiUrlTreeNode.cs
Co-authored-by: Vincent Biret <[email protected]>
1 parent e8061ac commit 5a7146c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.OpenApi/Services/OpenApiUrlTreeNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ private static string GetMethods(OpenApiUrlTreeNode node)
288288
{
289289
return String.Join("_", node.PathItems.SelectMany(p => p.Value.Operations.Select(o => o.Key))
290290
.Distinct()
291-
.Select(o => o.ToString().ToUpper())
291+
.Select(static o => o.ToString().ToUpper())
292292
.Order()
293293
.ToList());
294294
}

0 commit comments

Comments
 (0)