This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push:
new 0b868f25 Javadoc and don't use FQCN in throws clause.
0b868f25 is described below
commit 0b868f25f200700e600d30dbfc8e128b112220d1
Author: Gary Gregory <[email protected]>
AuthorDate: Sat May 21 14:53:40 2022 -0400
Javadoc and don't use FQCN in throws clause.
---
src/main/java/org/apache/commons/csv/Lexer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/csv/Lexer.java
b/src/main/java/org/apache/commons/csv/Lexer.java
index f424039b..06b2c9c2 100644
--- a/src/main/java/org/apache/commons/csv/Lexer.java
+++ b/src/main/java/org/apache/commons/csv/Lexer.java
@@ -216,7 +216,7 @@ final class Lexer implements Closeable {
* @param token
* an existing Token object to reuse. The caller is responsible
to initialize the Token.
* @return the next token found.
- * @throws java.io.IOException on stream access error.
+ * @throws IOException on stream access error.
*/
Token nextToken(final Token token) throws IOException {