Skip to content

Commit

Permalink
Update WriteOnlyJsonConverterT.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Mar 12, 2024
1 parent 9c1fa18 commit 611dbe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Verify/Serialization/WriteOnlyJsonConverterT.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ public abstract class WriteOnlyJsonConverter<T> :

public abstract void Write(VerifyJsonWriter writer, T value);

static Type? nullableType;
Type? nullableType;

static WriteOnlyJsonConverter()
protected WriteOnlyJsonConverter()
{
if (typeof(T).IsValueType)
{
Expand Down

0 comments on commit 611dbe9

Please sign in to comment.