refactor: Removing unused code

This commit is contained in:
Chris Cameron
2019-01-25 13:57:19 -05:00
parent 80a4d94358
commit 488df297fc
3 changed files with 0 additions and 81 deletions

View File

@@ -29,12 +29,6 @@ namespace ICD.Common.Utils.Json
if (serializer == null)
throw new ArgumentNullException("serializer");
if (value == null)
{
writer.WriteNull();
return;
}
WriteJson(writer, (T)value, serializer);
}