Skip to content

Commit 8724381

Browse files
committed
add format fixes
1 parent 238497e commit 8724381

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/HttpClientHints.AspNetCore/HttpClientHintsHttpContextExtensions.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// Copyright © https://myCSharp.de - all rights reserved
22

33
using Microsoft.AspNetCore.Http;
4-
using Microsoft.Extensions.Primitives;
54

65
namespace MyCSharp.HttpClientHints.AspNetCore;
76

@@ -54,7 +53,7 @@ public static HttpClientHintsView GetClientHintsView(this IHeaderDictionary head
5453
public static HttpClientHints GetClientHints(this IHeaderDictionary headers)
5554
{
5655
// Use the non-allocating view to gather values and build a snapshot.
57-
HttpClientHintsView view = new(headers);
58-
return view.BuildSnapshot();
56+
HttpClientHintsView view = new(headers);
57+
return view.BuildSnapshot();
5958
}
6059
}

0 commit comments

Comments
 (0)