Add output of the nullString to toString implementation
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522879 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
467a504a2d
commit
65ce9e99ea
|
@ -585,6 +585,10 @@ public class CSVFormat implements Serializable {
|
|||
sb.append(' ');
|
||||
sb.append("CommentStart=<").append(commentStart).append('>');
|
||||
}
|
||||
if (isNullHandling()) {
|
||||
sb.append(' ');
|
||||
sb.append("NullString=<").append(nullString).append('>');
|
||||
}
|
||||
if (getIgnoreEmptyLines()) {
|
||||
sb.append(" EmptyLines:ignored");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue