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 5bdafc6 commit 574ed87Copy full SHA for 574ed87
1 file changed
src/test/java/org/apache/commons/csv/issues/JiraCsv213Test.java
@@ -36,7 +36,6 @@
36
* in the CSVParser as the parser is streaming over the file. The CSVParser is like a forward-only stream. When you
37
* create a new Iterator you are only created a new view on the same position in the parser's stream. For the behavior
38
* you want, you need to open a new CSVParser.
39
- *
40
*/
41
@Ignore
42
public class JiraCsv213Test {
@@ -61,7 +60,7 @@ private void createEndChannel(final File csvFile) {
61
60
return;
62
}
63
} catch (final IOException e) {
64
- throw new RuntimeException("Error while adding end channel to csv", e);
+ throw new IllegalStateException("Error while adding end channel to csv", e);
65
66
67
0 commit comments