Fix formatting.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1496236 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-06-24 22:18:23 +00:00
parent d045a45f57
commit 1579c1786a
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class CSVFormat implements Serializable {
* @throws IllegalArgumentException if the delimiter is a line break character
*/
// package protected to give access without needing a synthetic accessor
CSVFormatBuilder(final char delimiter){
CSVFormatBuilder(final char delimiter) {
this(delimiter, null, null, null, null, false, false, null, null, null);
}