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:
Gary D. Gregory 2013-03-19 04:54:38 +00:00
parent bc1e1da91f
commit f6f02e5265
1 changed files with 2 additions and 3 deletions

View File

@ -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;