Fix formatting.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1458139 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bc1e1da91f
commit
f6f02e5265
|
@ -178,9 +178,8 @@ public class CSVFormat implements Serializable {
|
|||
// package protected to give access without needing a synthetic accessor
|
||||
CSVFormat(final char delimiter, final Character quoteChar, final Quote quotePolicy, final Character commentStart, final Character escape,
|
||||
final boolean ignoreSurroundingSpaces, final boolean ignoreEmptyLines, final String lineSeparator, final String[] header)
|
||||
{
|
||||
if (isLineBreak(delimiter))
|
||||
{
|
||||
{
|
||||
if (isLineBreak(delimiter)) {
|
||||
throw new IllegalArgumentException("The delimiter cannot be a line break");
|
||||
}
|
||||
this.delimiter = delimiter;
|
||||
|
|
Loading…
Reference in New Issue