Skip to content

Commit

Permalink
handle null as ""
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed Sep 10, 2024
1 parent b661d51 commit 6bdf12b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ else if (clazz.equals(Double.class)) {

@Override
public String collectionToCellValue(Collection<?> collection) {
return Joiner.on(listDelimiter).join(collection);
return Joiner.on(listDelimiter).useForNull("").join(collection);
}
}

0 comments on commit 6bdf12b

Please sign in to comment.