Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve memory allocation for writes
  • Loading branch information
Turnerj committed Dec 13, 2019
commit bb2836483087ba1c65fe101d6ba7e9e89fc6fab0
2 changes: 1 addition & 1 deletion Source/Schema.NET/ValuesJsonConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public override void WriteJson(JsonWriter writer, object value, JsonSerializer s
}
else
{
this.WriteObject(writer, values.Cast<object>().ToList(), serializer);
this.WriteObject(writer, values.Cast<object>(), serializer);
}
}

Expand Down