Skip to content

Commit

Permalink
Merge pull request IQSS#10366 from IQSS/10365-jsonprinter-nullsafejso…
Browse files Browse the repository at this point in the history
…nbuilder

Fixing the null-unsafe bug in JsonPrinter IQSS#10365
  • Loading branch information
qqmyers authored Mar 12, 2024
2 parents 6a26e63 + 9650521 commit e26fabe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ public static JsonObjectBuilder json(FileMetadata fmd){
}

public static JsonObjectBuilder json(FileMetadata fmd, boolean returnOwners, boolean printDatasetVersion) {
JsonObjectBuilder builder = jsonObjectBuilder();
NullSafeJsonBuilder builder = jsonObjectBuilder();

// deprecated: .add("category", fmd.getCategory())
// TODO: uh, figure out what to do here... it's deprecated
Expand Down

0 comments on commit e26fabe

Please sign in to comment.