@@ -299,7 +299,7 @@ public void testRFC4180() {
299299 assertEquals (null , RFC4180 .getCommentStart ());
300300 assertEquals (',' , RFC4180 .getDelimiter ());
301301 assertEquals (null , RFC4180 .getEscape ());
302- assertFalse (RFC4180 .isIgnoringEmptyLines ());
302+ assertFalse (RFC4180 .getIgnoreEmptyLines ());
303303 assertEquals (Character .valueOf ('"' ), RFC4180 .getQuoteChar ());
304304 assertEquals (null , RFC4180 .getQuotePolicy ());
305305 assertEquals ("\r \n " , RFC4180 .getRecordSeparator ());
@@ -324,8 +324,8 @@ public void testSerialization() throws Exception {
324324 assertEquals ("comment start" , CSVFormat .DEFAULT .getCommentStart (), format .getCommentStart ());
325325 assertEquals ("record separator" , CSVFormat .DEFAULT .getRecordSeparator (), format .getRecordSeparator ());
326326 assertEquals ("escape" , CSVFormat .DEFAULT .getEscape (), format .getEscape ());
327- assertEquals ("trim" , CSVFormat .DEFAULT .isIgnoringSurroundingSpaces (), format .isIgnoringSurroundingSpaces ());
328- assertEquals ("empty lines" , CSVFormat .DEFAULT .isIgnoringEmptyLines (), format .isIgnoringEmptyLines ());
327+ assertEquals ("trim" , CSVFormat .DEFAULT .getIgnoreSurroundingSpaces (), format .getIgnoreSurroundingSpaces ());
328+ assertEquals ("empty lines" , CSVFormat .DEFAULT .getIgnoreEmptyLines (), format .getIgnoreEmptyLines ());
329329 }
330330
331331 @ Test
@@ -376,14 +376,14 @@ public void testWithHeader() throws Exception {
376376
377377 @ Test
378378 public void testWithIgnoreEmptyLines () throws Exception {
379- assertFalse (CSVFormat .DEFAULT .withIgnoreEmptyLines (false ).isIgnoringEmptyLines ());
380- assertTrue (CSVFormat .DEFAULT .withIgnoreEmptyLines (true ).isIgnoringEmptyLines ());
379+ assertFalse (CSVFormat .DEFAULT .withIgnoreEmptyLines (false ).getIgnoreEmptyLines ());
380+ assertTrue (CSVFormat .DEFAULT .withIgnoreEmptyLines (true ).getIgnoreEmptyLines ());
381381 }
382382
383383 @ Test
384384 public void testWithIgnoreSurround () throws Exception {
385- assertFalse (CSVFormat .DEFAULT .withIgnoreSurroundingSpaces (false ).isIgnoringSurroundingSpaces ());
386- assertTrue (CSVFormat .DEFAULT .withIgnoreSurroundingSpaces (true ).isIgnoringSurroundingSpaces ());
385+ assertFalse (CSVFormat .DEFAULT .withIgnoreSurroundingSpaces (false ).getIgnoreSurroundingSpaces ());
386+ assertTrue (CSVFormat .DEFAULT .withIgnoreSurroundingSpaces (true ).getIgnoreSurroundingSpaces ());
387387 }
388388
389389 @ Test
0 commit comments