Skip to content

Commit 2fe0d05

Browse files
committed
Use CF 3.18.0
1 parent 62f4574 commit 2fe0d05

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<dependency>
7272
<groupId>org.checkerframework</groupId>
7373
<artifactId>checker-qual</artifactId>
74-
<version>3.17.0</version>
74+
<version>3.18.0</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>com.google.errorprone</groupId>
@@ -601,7 +601,7 @@
601601
<path>
602602
<groupId>org.checkerframework</groupId>
603603
<artifactId>checker</artifactId>
604-
<version>3.17.0</version>
604+
<version>3.18.0</version>
605605
</path>
606606
</annotationProcessorPaths>
607607
<annotationProcessors>
@@ -619,7 +619,7 @@
619619
<dependency>
620620
<groupId>org.checkerframework</groupId>
621621
<artifactId>checker</artifactId>
622-
<version>3.17.0</version>
622+
<version>3.18.0</version>
623623
</dependency>
624624
</dependencies>
625625
</profile>

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,6 @@ public static CSVFormat newFormat(final char delimiter) {
12331233
true);
12341234
}
12351235

1236-
@SuppressWarnings("nullness:argument") // Objects.toString(..., ...) needs @PolyNull (has it after CF 3.17.0)
12371236
static @Nullable String @PolyNull [] toStringArray(final @Nullable Object @PolyNull [] values) {
12381237
if (values == null) {
12391238
return null;

0 commit comments

Comments
 (0)