Skip to content

Commit 054dc91

Browse files
committed
Remove unused private method
1 parent 42ded1c commit 054dc91

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
import java.util.Objects;
4141
import java.util.Set;
4242
import java.util.function.Supplier;
43-
import java.util.stream.Stream;
4443

4544
import org.apache.commons.codec.binary.Base64OutputStream;
4645
import org.apache.commons.io.IOUtils;
@@ -2101,10 +2100,6 @@ <T> IOStream<T> limit(final IOStream<T> stream) {
21012100
return useMaxRows() ? stream.limit(getMaxRows()) : stream;
21022101
}
21032102

2104-
<T> Stream<T> limit(final Stream<T> stream) {
2105-
return useMaxRows() ? stream.limit(getMaxRows()) : stream;
2106-
}
2107-
21082103
/**
21092104
* Parses the specified content.
21102105
*

0 commit comments

Comments
 (0)