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

commit bf987d5dd60464616078302d80ae43aa9adc0f8d
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jan 2 15:07:09 2025 -0500

    Remove @SuppressWarnings
---
 src/main/java/org/apache/commons/csv/CSVParser.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/csv/CSVParser.java 
b/src/main/java/org/apache/commons/csv/CSVParser.java
index d9bb01fc..07028ea7 100644
--- a/src/main/java/org/apache/commons/csv/CSVParser.java
+++ b/src/main/java/org/apache/commons/csv/CSVParser.java
@@ -521,7 +521,6 @@ public final class CSVParser implements 
Iterable<CSVRecord>, Closeable {
      * @deprecated Will be private in the next major version, use {@link 
Builder#get()}.
      */
     @Deprecated
-    @SuppressWarnings("resource")
     public CSVParser(final Reader reader, final CSVFormat format, final long 
characterOffset, final long recordNumber)
         throws IOException {
             this(reader, format, characterOffset, recordNumber, null, false);

Reply via email to