Make CSVFormat constructor package private since it is only used in CSVFormat.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1592833 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-05-06 18:37:15 +00:00
parent 4698a563dc
commit 692a1e362d
1 changed files with 1 additions and 2 deletions

View File

@ -293,8 +293,7 @@ public final class CSVFormat implements Serializable {
* @param skipHeaderRecord TODO
* @throws IllegalArgumentException if the delimiter is a line break character
*/
// package protected to give access without needing a synthetic accessor
CSVFormat(final char delimiter, final Character quoteChar,
private CSVFormat(final char delimiter, final Character quoteChar,
final Quote quotePolicy, final Character commentStart,
final Character escape, final boolean ignoreSurroundingSpaces,
final boolean ignoreEmptyLines, final String recordSeparator,