Skip to content

Commit

Permalink
Update JsonNetSerializer.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
abatishchev committed Jun 9, 2022
1 parent 236a9c6 commit a4a27be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/JWT/Serializers/JsonNetSerializer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace JWT.Serializers
/// <summary>
/// JSON serializer using Newtonsoft.Json implementation.
/// </summary>
public sealed class JsonNetSerializer : IJsonSerializer
public class JsonNetSerializer : IJsonSerializer
{
private readonly JsonSerializer _serializer;

Expand Down Expand Up @@ -60,11 +60,11 @@ public object Deserialize(Type type, string json)
return _serializer.Deserialize(jsonReader, type);
}

// TODO: Added this with missing implementation to just see that this get used by .net < 4.6.2
// TODO: Added this with missing implementation to just see that this get used by .net < 4.6.2
public void SetCamelCasing(bool state)
{
throw new NotImplementedException();
}
}
}
#endif
#endif

0 comments on commit a4a27be

Please sign in to comment.