refactor: Remove unneeded NotImplementedException

json-serializing-nullable-fields-issue
Robert Dailey 9 months ago
parent 98c2fbd3e8
commit 3e86172831

@ -5,6 +5,5 @@ public class RequiredMigrationException : Exception
public RequiredMigrationException()
: base("Some REQUIRED migrations did not pass")
{
throw new NotImplementedException();
}
}

@ -7,6 +7,7 @@ internal class TermDataConverter : JsonConverter
{
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
{
// Not to be used for serialization
throw new NotImplementedException();
}

Loading…
Cancel
Save