Add output of header record skipping to toString implementation

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1522880 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-09-13 11:42:29 +00:00
parent 65ce9e99ea
commit ef202e7429
1 changed files with 1 additions and 0 deletions

View File

@ -595,6 +595,7 @@ public class CSVFormat implements Serializable {
if (getIgnoreSurroundingSpaces()) {
sb.append(" SurroundingSpaces:ignored");
}
sb.append(" SkipHeaderRecord:").append(skipHeaderRecord);
return sb.toString();
}