Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyencuong2596 committed Jun 20, 2024
1 parent 53d0d52 commit 8240538
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ public static OpenIdConnectConfiguration Read(ref Utf8JsonReader reader, OpenIdC

else if (reader.ValueTextEquals(Encoding.UTF8.GetBytes(JsonWebKeySetParameterNames.Keys)))
{
config.ShouldSerializeJsonWebKeys = true;
if (config.JsonWebKeySet == null)
config.JsonWebKeySet = new JsonWebKeySet();
// Skip key "Keys"
Expand Down Expand Up @@ -591,7 +590,6 @@ public static OpenIdConnectConfiguration Read(ref Utf8JsonReader reader, OpenIdC

else if (propertyName.Equals(JsonWebKeySetParameterNames.Keys, StringComparison.OrdinalIgnoreCase))
{
config.ShouldSerializeJsonWebKeys = true;
if (config.JsonWebKeySet == null)
config.JsonWebKeySet = new JsonWebKeySet();
// Skip key "Keys"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public static OpenIdConnectConfiguration DefaultConfigWithJWK
{
var config = Default;
config.JsonWebKeySet = DataSets.JsonWebKeySet1;
config.ShouldSerializeJsonWebKeys = true;
return config;
}
}
Expand Down

0 comments on commit 8240538

Please sign in to comment.