Skip to content

Commit

Permalink
Fixed trailing comma on creating json lists (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser Greenroyd authored Mar 27, 2024
2 parents 0d41d28 + 8902786 commit 6e8626e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion File_Adapter/CRUD/Create/CreateJson.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public FSFile CreateJson(FSFile file, PushType pushType, PushConfig pushConfig)
continue;
}

allLines.Add(obj.ToJson() + ",");
allLines.Add(obj.ToJson());
}

if (valueTypesFound)
Expand Down

0 comments on commit 6e8626e

Please sign in to comment.