Skip to content

Commit 53fa8ad

Browse files
committed
Show quote mode if not null
1 parent c025d73 commit 53fa8ad

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1595,6 +1595,10 @@ public String toString() {
15951595
sb.append(' ');
15961596
sb.append("QuoteChar=<").append(quoteCharacter).append('>');
15971597
}
1598+
if (quoteMode != null) {
1599+
sb.append(' ');
1600+
sb.append("QuoteMode=<").append(quoteMode).append('>');
1601+
}
15981602
if (isCommentMarkerSet()) {
15991603
sb.append(' ');
16001604
sb.append("CommentStart=<").append(commentMarker).append('>');

0 commit comments

Comments
 (0)