We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26fded2 commit 2ec79f3Copy full SHA for 2ec79f3
tools/Custom/JsonExtensions.cs
@@ -61,7 +61,7 @@ public static string RemoveDefaultNullProperties(this JToken token)
61
{
62
jsonArray.RemoveAt(i); // Remove the "defaultnull" string from the array
63
}
64
- else if (item.Type == JTokenType.String && item.ToString().Equals("null",StringComparison.Ordinal)
+ else if (item.Type == JTokenType.String && item.ToString().Equals("null",StringComparison.Ordinal))
65
66
jsonArray[i] = JValue.CreateNull(); // Convert "null" string to actual null
67
0 commit comments