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:
Sebastian Bazley 2013-03-24 15:10:50 +00:00
parent dd1ebc9c9a
commit 7825b260f3
1 changed files with 1 additions and 1 deletions

View File

@ -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());