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 2021/12/07 03:16:32 UTC

[commons-io] branch master updated (73bd880 -> d525799)

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 73bd880  Add @SuppressWarnings.
     new 7eae9a2  Typos.
     new d525799  Fix and move entry.

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:
 src/changes/changes.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

[commons-io] 02/02: Fix and move entry.

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 d5257997e8923257432dbd95189726b739a48607
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 6 10:28:53 2021 -0500

    Fix and move entry.
---
 src/changes/changes.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index c51ac51..881d78e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -74,9 +74,6 @@ The <action> type attribute can be add,update,fix,remove.
       <action dev="ggregory" type="fix" due-to="Arturo Bernal">
         Fix Javadoc in ThreadMonitor#run() method. #273.
       </action>
-      <action issue="IO-726" dev="ggregory" type="fix" due-to="shollander, Gary Gregory">
-        Add MemoryMappedInputStream. #215.
-      </action>
       <action issue="IO-749" dev="ggregory" type="fix" due-to="haihuiyang, Gary Gregory">
         FileUtils.listFiles() does not list matching files if File parameter is a symbolic link.
       </action>
@@ -130,6 +127,9 @@ The <action> type attribute can be add,update,fix,remove.
         When deleting symlinks, File/PathUtils.deleteDirectory() changes file permissions of the target.
       </action>
       <!-- ADD -->
+      <action issue="IO-726" dev="ggregory" type="fix" due-to="shollander, Gary Gregory">
+        Add MemoryMappedFileInputStream #215.
+      </action>
       <action dev="ggregory" type="add" due-to="Gary Gregory">
         Add BrokenReader.INSTANCE.
       </action>

[commons-io] 01/02: Typos.

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 7eae9a2344ee57a8c1954f9efd3b68d20dbcaa9e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 6 10:27:57 2021 -0500

    Typos.
---
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index be39281..c51ac51 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -54,7 +54,7 @@ The <action> type attribute can be add,update,fix,remove.
         FileWriterWithEncoding for an existing file no longer truncates the file. #251.
       </action>
       <action dev="ggregory" type="fix" due-to="Gary Gregory">
-        A null charset or charset name in FileWriterWithEncoding constructors uses the default Charset.
+        A null Charset or Charset name in FileWriterWithEncoding constructors uses the default Charset.
       </action>
       <action dev="ggregory" type="fix" due-to="Davide Angelocola">
         Fix usage of assertNotNull #269.