Show quote mode if not null

This commit is contained in:
Sebb 2019-06-16 17:07:02 +01:00
parent c025d73d31
commit 53fa8ad356
1 changed files with 4 additions and 0 deletions

View File

@ -1595,6 +1595,10 @@ public final class CSVFormat implements Serializable {
sb.append(' ');
sb.append("QuoteChar=<").append(quoteCharacter).append('>');
}
if (quoteMode != null) {
sb.append(' ');
sb.append("QuoteMode=<").append(quoteMode).append('>');
}
if (isCommentMarkerSet()) {
sb.append(' ');
sb.append("CommentStart=<").append(commentMarker).append('>');