File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929 */
3030public class CSVFormat implements Cloneable , Serializable {
3131
32- private char delimiter = ',' ;
33- private char encapsulator = '"' ;
34- private char commentStart = DISABLED ;
35- private char escape = DISABLED ;
36- private boolean leadingSpacesIgnored = true ;
37- private boolean trailingSpacesIgnored = true ;
38- private boolean unicodeEscapesInterpreted = false ;
39- private boolean emptyLinesIgnored = true ;
40- private String lineSeparator = "\r \n " ;
32+ private volatile char delimiter = ',' ;
33+ private volatile char encapsulator = '"' ;
34+ private volatile char commentStart = DISABLED ;
35+ private volatile char escape = DISABLED ;
36+ private volatile boolean leadingSpacesIgnored = true ;
37+ private volatile boolean trailingSpacesIgnored = true ;
38+ private volatile boolean unicodeEscapesInterpreted = false ;
39+ private volatile boolean emptyLinesIgnored = true ;
40+ private volatile String lineSeparator = "\r \n " ;
4141
4242
4343 /**
You can’t perform that action at this time.
0 commit comments