Skip to content

Commit

Permalink
fix c# features
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoraes committed Sep 26, 2024
1 parent 25ea688 commit c598f7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JexlNet.ExtendedGrammar/ExtendedGrammar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,7 @@ public static JsonNode ObjectEntries(JsonNode input)
/// <returns>A new object with the properties of the input objects merged together</returns>
public static JsonNode ObjectMerge(JsonNode[] args)
{
JsonObject result = [];
JsonObject result = new JsonObject();
foreach (JsonNode arg in args)
{
if (arg is JsonObject obj)
Expand Down

0 comments on commit c598f7a

Please sign in to comment.