We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42ded1c commit 054dc91Copy full SHA for 054dc91
src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -40,7 +40,6 @@
40
import java.util.Objects;
41
import java.util.Set;
42
import java.util.function.Supplier;
43
-import java.util.stream.Stream;
44
45
import org.apache.commons.codec.binary.Base64OutputStream;
46
import org.apache.commons.io.IOUtils;
@@ -2101,10 +2100,6 @@ <T> IOStream<T> limit(final IOStream<T> stream) {
2101
2100
return useMaxRows() ? stream.limit(getMaxRows()) : stream;
2102
}
2103
2104
- <T> Stream<T> limit(final Stream<T> stream) {
2105
- return useMaxRows() ? stream.limit(getMaxRows()) : stream;
2106
- }
2107
-
2108
/**
2109
* Parses the specified content.
2110
*
0 commit comments