Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add format fixes
  • Loading branch information
BenjaminAbt committed Aug 23, 2025
commit 8724381cde5494b74e3186b43a123c16fc8f45af
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Copyright © https://myCSharp.de - all rights reserved

using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Primitives;

namespace MyCSharp.HttpClientHints.AspNetCore;

Expand Down Expand Up @@ -54,7 +53,7 @@ public static HttpClientHintsView GetClientHintsView(this IHeaderDictionary head
public static HttpClientHints GetClientHints(this IHeaderDictionary headers)
{
// Use the non-allocating view to gather values and build a snapshot.
HttpClientHintsView view = new(headers);
return view.BuildSnapshot();
HttpClientHintsView view = new(headers);
return view.BuildSnapshot();
}
}