Skip to content

Commit df7b7d3

Browse files
committed
Remove redundant cast
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512622 13f79535-47bb-0310-9956-ffa450edef68
1 parent 375b273 commit df7b7d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/apache/commons/csv/CSVParserTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ public void testGetRecordNumberWithCR() throws Exception {
700700
@Test(expected = IllegalArgumentException.class)
701701
public void testInvalidFormat() throws Exception {
702702
final CSVFormat invalidFormat = CSVFormat.DEFAULT.withDelimiter(CR);
703-
new CSVParser((Reader) null, invalidFormat).close();
703+
new CSVParser(null, invalidFormat).close();
704704
}
705705

706706
private void validateRecordNumbers(final String lineSeparator) throws IOException {

0 commit comments

Comments
 (0)