Skip to content

Commit 933a950

Browse files
committed
[CSV-88] Not possible to create a CSVFormat from scratch. Should the validate method be public?
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1397877 13f79535-47bb-0310-9956-ffa450edef68
1 parent ae47fb8 commit 933a950

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ public class CSVFormat implements Serializable {
143143
* @param header
144144
* the header
145145
*/
146-
CSVFormat(final Character delimiter, final Character encapsulator, final Character commentStart, final Character escape, final boolean surroundingSpacesIgnored,
147-
final boolean emptyLinesIgnored, final String lineSeparator, final String[] header) {
146+
public CSVFormat(final Character delimiter, final Character encapsulator, final Character commentStart, final Character escape, final
147+
boolean surroundingSpacesIgnored, final boolean emptyLinesIgnored, final String lineSeparator, final String[] header) {
148148
this.delimiter = delimiter;
149149
this.encapsulator = encapsulator;
150150
this.commentStart = commentStart;

0 commit comments

Comments
 (0)