garydgregory commented on code in PR #612:
URL: https://github.com/apache/commons-csv/pull/612#discussion_r3437283265
##########
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:
@OldTruckDriver
Please keep and use the fluent style.
--
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]