Skip to content

Commit 692a1e3

Browse files
committed
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
1 parent 4698a56 commit 692a1e3

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,8 +293,7 @@ public static CSVFormat newFormat(final char delimiter) {
293293
* @param skipHeaderRecord TODO
294294
* @throws IllegalArgumentException if the delimiter is a line break character
295295
*/
296-
// package protected to give access without needing a synthetic accessor
297-
CSVFormat(final char delimiter, final Character quoteChar,
296+
private CSVFormat(final char delimiter, final Character quoteChar,
298297
final Quote quotePolicy, final Character commentStart,
299298
final Character escape, final boolean ignoreSurroundingSpaces,
300299
final boolean ignoreEmptyLines, final String recordSeparator,

0 commit comments

Comments
 (0)