This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push: new 8685aa5 Checkstyle. 8685aa5 is described below commit 8685aa5ff91ee91a5449d71780997378917bd824 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sat Feb 23 09:34:31 2019 -0500 Checkstyle. --- src/main/java/org/apache/commons/csv/CSVFormat.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index 1d0c641..7fcf830 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -1501,7 +1501,8 @@ public final class CSVFormat implements Serializable { * * @throws IOException */ - private void printWithQuotes(final Reader reader, final Appendable out, final boolean newRecord) throws IOException { + private void printWithQuotes(final Reader reader, final Appendable out, final boolean newRecord) + throws IOException { final char quoteChar = getQuoteCharacter().charValue(); if (getQuoteMode() == QuoteMode.NONE) {