You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/07/28 22:18:52 UTC

[commons-io] branch master updated (16acf169 -> 357e12c7)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


    from 16acf169 Javadoc
     new c3c7e80d Javadoc
     new 357e12c7 Bump junit-bom from 5.8.2 to 5.9.0

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml                                                        | 2 +-
 src/changes/changes.xml                                        | 2 +-
 src/main/java/org/apache/commons/io/function/IOBiFunction.java | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)


[commons-io] 02/02: Bump junit-bom from 5.8.2 to 5.9.0

Posted by gg...@apache.org.
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-io.git

commit 357e12c79f32e85c9bb9b74c120c13b55aa8f344
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 28 18:18:43 2022 -0400

    Bump junit-bom from 5.8.2 to 5.9.0
---
 pom.xml                 | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index e6b7c975..7084d102 100644
--- a/pom.xml
+++ b/pom.xml
@@ -249,7 +249,7 @@ file comparators, endian transformation classes, and much more.
       <dependency>
         <groupId>org.junit</groupId>
         <artifactId>junit-bom</artifactId>
-        <version>5.8.2</version>
+        <version>5.9.0</version>
         <type>pom</type>
         <scope>import</scope>
       </dependency>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index b234f13f..5cf9ba27 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -459,7 +459,7 @@ The <action> type attribute can be add,update,fix,remove.
         Bump checkstyle from 8.44 to 9.3 #256, #257, #266, #279, #292. #308.
       </action>
       <action dev="ggregory" type="update" due-to="Dependabot">
-        Bump junit-bom from 5.8.0-M1 to 5.8.2 #260, #271, #275, #309.
+        Bump junit-bom from 5.8.0-M1 to 5.9.0 #260, #271, #275, #309.
       </action>
       <action dev="ggregory" type="update" due-to="Dependabot">
         Bump mockito-inline from 3.11.2 to 4.6.1 #262, #264, #282, #306, #314, #331, #348, #359.


[commons-io] 01/02: Javadoc

Posted by gg...@apache.org.
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-io.git

commit c3c7e80ddcc40cfb380f8531aee4448b53a30f2a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jul 28 17:22:48 2022 -0400

    Javadoc
---
 src/main/java/org/apache/commons/io/function/IOBiFunction.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/function/IOBiFunction.java b/src/main/java/org/apache/commons/io/function/IOBiFunction.java
index 23e9b8b8..07cd6134 100644
--- a/src/main/java/org/apache/commons/io/function/IOBiFunction.java
+++ b/src/main/java/org/apache/commons/io/function/IOBiFunction.java
@@ -24,12 +24,12 @@ import java.util.function.BiFunction;
 import java.util.function.Function;
 
 /**
- * Represents a function that accepts two arguments and produces a result. This is the two-arity specialization of
- * {@link IOFunction}.
+ * Like {@link BiFunction} but throws {@link IOException}.
  *
  * <p>
  * This is a <a href="package-summary.html">functional interface</a> whose functional method is
  * {@link #apply(Object, Object)}.
+ * </p>
  *
  * @param <T> the type of the first argument to the function
  * @param <U> the type of the second argument to the function