Avoid double boxing
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1460392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
dd1ebc9c9a
commit
7825b260f3
|
@ -168,7 +168,7 @@ public class CSVFormatBuilderTest {
|
|||
assertEquals(null, RFC4180.getCommentStart());
|
||||
assertEquals(',', RFC4180.getDelimiter());
|
||||
assertEquals(null, RFC4180.getEscape());
|
||||
assertEquals(false, RFC4180.getIgnoreEmptyLines());
|
||||
assertFalse(RFC4180.getIgnoreEmptyLines());
|
||||
assertEquals(Character.valueOf('"'), RFC4180.getQuoteChar());
|
||||
assertEquals(null, RFC4180.getQuotePolicy());
|
||||
assertEquals("\r\n", RFC4180.getRecordSeparator());
|
||||
|
|
Loading…
Reference in New Issue