Skip to content

Commit f6f02e5

Browse files
committed
Fix formatting.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1458139 13f79535-47bb-0310-9956-ffa450edef68
1 parent bc1e1da commit f6f02e5

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,8 @@ public static CSVFormatBuilder newBuilder() {
178178
// package protected to give access without needing a synthetic accessor
179179
CSVFormat(final char delimiter, final Character quoteChar, final Quote quotePolicy, final Character commentStart, final Character escape,
180180
final boolean ignoreSurroundingSpaces, final boolean ignoreEmptyLines, final String lineSeparator, final String[] header)
181-
{
182-
if (isLineBreak(delimiter))
183-
{
181+
{
182+
if (isLineBreak(delimiter)) {
184183
throw new IllegalArgumentException("The delimiter cannot be a line break");
185184
}
186185
this.delimiter = delimiter;

0 commit comments

Comments
 (0)