Skip to content

Commit 9bf57e1

Browse files
committed
Javadoc and comments
1 parent 9b0f78e commit 9bf57e1

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

src/main/java/org/apache/commons/io/function/IOBooleanSupplier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* Like {@link BooleanSupplier} but throws {@link IOException}.
2727
*
28-
* @since 2.18.0
28+
* @since 2.19.0
2929
*/
3030
@FunctionalInterface
3131
public interface IOBooleanSupplier {

src/main/java/org/apache/commons/io/function/Uncheck.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ public static <T> T get(final IOSupplier<T> supplier, final Supplier<String> mes
239239
* @param supplier Supplies the return value.
240240
* @return result from the supplier.
241241
* @throws UncheckedIOException if an I/O error occurs.
242-
* @since 2.18.0
242+
* @since 2.19.0
243243
*/
244244
public static boolean getAsBoolean(final IOBooleanSupplier supplier) {
245245
try {

src/main/java/org/apache/commons/io/output/BrokenOutputStream.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,8 @@ public void flush() throws IOException {
120120

121121
/**
122122
* Throws the configured exception from its supplier.
123-
* @param method TODO
124123
*
124+
* @param method The exception function argument.
125125
* @return Throws the configured exception from its supplier.
126126
*/
127127
private RuntimeException rethrow(final String method) {

src/main/java/org/apache/commons/io/output/ProxyOutputStream.java

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public Builder() {
6868
* @see #getOutputStream()
6969
* @see #getUnchecked()
7070
*/
71+
@SuppressWarnings("resource") // caller closes
7172
@Override
7273
public ProxyOutputStream get() throws IOException {
7374
return new ProxyOutputStream(getOutputStream());

src/main/java/org/apache/commons/io/output/RandomAccessFileOutputStream.java

+1
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ private Builder() {
8585
* @see AbstractOrigin#getFile()
8686
* @see #getUnchecked()
8787
*/
88+
@SuppressWarnings("resource") // caller closes
8889
@Override
8990
public RandomAccessFileOutputStream get() throws IOException {
9091
return new RandomAccessFileOutputStream(getRandomAccessFile());

0 commit comments

Comments
 (0)