Skip to content

Commit

Permalink
Fix javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
arturobernalg committed Dec 18, 2020
1 parent 6ba7b29 commit bbe849d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/csv/CSVFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -1628,8 +1628,8 @@ private CharSequence trim(final CharSequence charSequence) {
/**
* Verifies the consistency of the parameters and throws an IllegalArgumentException if necessary.
*
* @throws IllegalArgumentException
* thrown if the delimiter is a scape character
* @throws IllegalArgumentException If something goes wrong
*
*/
private void validate() throws IllegalArgumentException {
if (isLineBreak(delimiter)) {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/apache/commons/csv/CSVParserTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ public void testGetOneLine() throws IOException {
/**
* Tests reusing a parser to process new string records one at a time as they are being discovered. See [CSV-110].
*
* @throws Exception Any exception can be thrown
* @throws IOException If something goes wrong
*/
@Test
public void testGetOneLineOneParser() throws IOException {
Expand Down

0 comments on commit bbe849d

Please sign in to comment.