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:
parent
4698a563dc
commit
692a1e362d
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue