From a5b008be32ee52205eae19c137ecbfe2edf1dc56 Mon Sep 17 00:00:00 2001 From: Hazel Koehler Date: Thu, 20 Jul 2023 17:54:23 -0400 Subject: [PATCH] chore: move TODO from ASTypeConverter to #50 --- ActivityPub.Types/Json/ASTypeConverter.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ActivityPub.Types/Json/ASTypeConverter.cs b/ActivityPub.Types/Json/ASTypeConverter.cs index 85119f8..f2719e4 100644 --- a/ActivityPub.Types/Json/ASTypeConverter.cs +++ b/ActivityPub.Types/Json/ASTypeConverter.cs @@ -184,7 +184,6 @@ private static JsonNode WriteObjectDirectly(T obj, JsonTypeInfo typeInfo, JsonNo var stripDefault = ignoreCondition is JsonIgnoreCondition.WhenWritingDefault; // Check if this is a default value that should be skipped. - // TODO - replace "true" with a configuration options if (ShouldSkip(value, prop, stripNull, stripDefault, true)) continue;