Skip to content

Commit ac3556b

Browse files
committed
Bump org.apache.commons:commons-parent from 81 to 85
Javadoc
1 parent 7d7f448 commit ac3556b

File tree

6 files changed

+38
-1
lines changed

6 files changed

+38
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.apache.commons</groupId>
2121
<artifactId>commons-parent</artifactId>
22-
<version>81</version>
22+
<version>85</version>
2323
</parent>
2424
<modelVersion>4.0.0</modelVersion>
2525
<groupId>commons-io</groupId>

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ The <action> type attribute can be add,update,fix,remove.
7777
<action dev="ggregory" type="add" due-to="Gary Gregory">Add org.apache.commons.io.Charsets.toCharsetDefault(String, Charset).</action>
7878
<!-- UPDATE -->
7979
<action dev="ggregory" type="update" due-to="Dependabot, Gary Gregory">Bump commons.bytebuddy.version from 1.17.5 to 1.17.6 #754.</action>
80+
<action dev="ggregory" type="update" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 81 to 85.</action>
8081
</release>
8182
<release version="2.19.0" date="2025-04-08" description="Version 2.19.0: Java 8 or later is required.">
8283
<!-- FIX -->

src/conf/spotbugs-exclude-filter.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,31 @@
8484
<Method name="next" />
8585
<Bug pattern="IT_NO_SUCH_ELEMENT" />
8686
</Match>
87+
<!-- OK by me and can't break BC anyway. -->
88+
<Match>
89+
<Class name="org.apache.commons.io.file.CleaningPathVisitor" />
90+
<Method name="withBigIntegerCounters" />
91+
<Bug pattern="HSM_HIDING_METHOD" />
92+
</Match>
93+
<!-- OK by me and can't break BC anyway. -->
94+
<Match>
95+
<Class name="org.apache.commons.io.file.CleaningPathVisitor" />
96+
<Method name="withLongCounters" />
97+
<Bug pattern="HSM_HIDING_METHOD" />
98+
</Match>
99+
<!-- This class is not thread-safe. Should this be a TO-DO?. -->
100+
<Match>
101+
<Class name="org.apache.commons.io.input.NullInputStream" />
102+
<Bug pattern="AT_NONATOMIC_64BIT_PRIMITIVE, AT_NONATOMIC_OPERATIONS_ON_SHARED_VARIABLE" />
103+
</Match>
104+
<!-- This class is not thread-safe. Should this be a TO-DO?. -->
105+
<Match>
106+
<Class name="org.apache.commons.io.input.NullReader" />
107+
<Bug pattern="AT_NONATOMIC_64BIT_PRIMITIVE, AT_NONATOMIC_OPERATIONS_ON_SHARED_VARIABLE, AT_STALE_THREAD_WRITE_OF_PRIMITIVE" />
108+
</Match>
109+
<!-- This class is not thread-safe. Should this be a TO-DO?. -->
110+
<Match>
111+
<Class name="org.apache.commons.io.input.BOMInputStream" />
112+
<Bug pattern="AT_STALE_THREAD_WRITE_OF_PRIMITIVE" />
113+
</Match>
87114
</FindBugsFilter>

src/main/java/org/apache/commons/io/input/BOMInputStream.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@
9191
* <p>
9292
* To build an instance, use {@link Builder}.
9393
* </p>
94+
* <p>
95+
* This class is not thread-safe.
96+
* </p>
9497
*
9598
* @see Builder
9699
* @see org.apache.commons.io.ByteOrderMark

src/main/java/org/apache/commons/io/input/NullInputStream.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
* }
5555
* }
5656
* </pre>
57+
* <p>
58+
* This class is not thread-safe.
59+
* </p>
5760
*
5861
* @since 1.3
5962
*/

src/main/java/org/apache/commons/io/input/NullReader.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@
6161
* }
6262
* }
6363
* </pre>
64+
* <p>
65+
* This class is not thread-safe.
66+
* </p>
6467
*
6568
* @since 1.3
6669
*/

0 commit comments

Comments
 (0)