OldTruckDriver commented on code in PR #612:
URL: https://github.com/apache/commons-csv/pull/612#discussion_r3437596498
##########
src/main/java/org/apache/commons/csv/CSVFormat.java:
##########
@@ -806,9 +806,13 @@ public Builder setQuote(final Character quoteCharacter) {
throw new IllegalArgumentException("The quoteCharacter cannot
be a line break");
}
this.quoteCharacter = quoteCharacter;
+ setQuotedNullString();
+ return this;
+ }
+
+ private void setQuotedNullString() {
Review Comment:
Done. Made setQuotedNullString() return the Builder and used return in the
setters. Thanks
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]