[commons-collections] 03/03: Fix Checkstyle

2023-10-10 Thread ggregory
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-collections.git

commit f30607f6b7fe1deaa09e833b9f39b4eff248fb31
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:43:34 2023 -0400

Fix Checkstyle
---
 .../org/apache/commons/collections4/bloomfilter/TestingHashers.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/collections4/bloomfilter/TestingHashers.java 
b/src/test/java/org/apache/commons/collections4/bloomfilter/TestingHashers.java
index c97d59c1f..8222d4c25 100644
--- 
a/src/test/java/org/apache/commons/collections4/bloomfilter/TestingHashers.java
+++ 
b/src/test/java/org/apache/commons/collections4/bloomfilter/TestingHashers.java
@@ -42,7 +42,7 @@ public class TestingHashers {
  * @param hashers The hashers to merge
  * @return {@code filter} for chaining
  */
-public static  T mergeHashers(final T filter, final 
Hasher...hashers) {
+public static  T mergeHashers(final T filter, final 
Hasher... hashers) {
 for (final Hasher h : hashers) {
 filter.merge(h);
 }



[commons-collections] 02/03: Fix Checkstyle

2023-10-10 Thread ggregory
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-collections.git

commit 66b30fe3f3c65efcf22a2fb222b356e55f4ed127
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:43:29 2023 -0400

Fix Checkstyle
---
 src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java 
b/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java
index a27528061..e9975e521 100644
--- a/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java
+++ b/src/main/java/org/apache/commons/collections4/map/StaticBucketMap.java
@@ -177,7 +177,7 @@ public final class StaticBucketMap extends 
AbstractIterableMap {
 int cnt = 0;
 
 for (int i = 0; i < buckets.length; i++) {
-synchronized(locks[i]) {
+synchronized (locks[i]) {
 cnt += locks[i].size;
 }
 }



[commons-collections] branch master updated (b2ab60874 -> f30607f6b)

2023-10-10 Thread ggregory
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-collections.git


from b2ab60874 Bump commons-parent
 new 290d6d99a Fix Checkstyle
 new 66b30fe3f Fix Checkstyle
 new f30607f6b Fix Checkstyle

The 3 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/main/java/org/apache/commons/collections4/map/StaticBucketMap.java  | 2 +-
 .../org/apache/commons/collections4/bloomfilter/TestingHashers.java | 2 +-
 .../org/apache/commons/collections4/map/PassiveExpiringMapTest.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)



[commons-collections] 01/03: Fix Checkstyle

2023-10-10 Thread ggregory
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-collections.git

commit 290d6d99a8318fe19b274424873008fb71534d32
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:43:24 2023 -0400

Fix Checkstyle
---
 .../org/apache/commons/collections4/map/PassiveExpiringMapTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java 
b/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java
index 3447e40d7..39a4bb22e 100644
--- 
a/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java
+++ 
b/src/test/java/org/apache/commons/collections4/map/PassiveExpiringMapTest.java
@@ -265,7 +265,7 @@ public class PassiveExpiringMapTest extends 
AbstractMapTest {
 
 assertNotNull(map.get("a"));
 
-try{
+try {
 Thread.sleep(2 * timeout);
 } catch (final InterruptedException e) {
 fail();



[commons-crypto] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-crypto.git


The following commit(s) were added to refs/heads/master by this push:
 new 2048b1c  Bump commons-parent
2048b1c is described below

commit 2048b1c2c38ab86bb104123f4b8bec244ab22be2
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:45:38 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 22d277a..2a66141 100644
--- a/pom.xml
+++ b/pom.xml
@@ -18,7 +18,7 @@
   
 org.apache.commons
 commons-parent
-61
+64
   
 
   commons-crypto



[commons-crypto] branch master updated: Bump github/codeql-action from 2.21.9 to 2.22.0 (#252)

2023-10-10 Thread ggregory
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-crypto.git


The following commit(s) were added to refs/heads/master by this push:
 new 507d390  Bump github/codeql-action from 2.21.9 to 2.22.0 (#252)
507d390 is described below

commit 507d3908c42a2c2624f5b3a2c58001c4af469e23
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Oct 10 07:46:36 2023 -0400

Bump github/codeql-action from 2.21.9 to 2.22.0 (#252)

Bumps [github/codeql-action](https://github.com/github/codeql-action) from 
2.21.9 to 2.22.0.
- [Release notes](https://github.com/github/codeql-action/releases)
- 
[Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- 
[Commits](https://github.com/github/codeql-action/compare/ddccb873888234080b77e9bc2d4764d5ccaaccf9...2cb752a87e96af96708ab57187ab6372ee1973ab)

---
updated-dependencies:
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 .github/workflows/codeql-analysis.yml | 4 ++--
 .github/workflows/scorecards-analysis.yml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/codeql-analysis.yml 
b/.github/workflows/codeql-analysis.yml
index 4f17f7d..f701139 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -74,7 +74,7 @@ jobs:
 
 # Initializes the CodeQL tools for scanning.
 - name: Initialize CodeQL
-  uses: github/codeql-action/init@ddccb873888234080b77e9bc2d4764d5ccaaccf9 
# v2.21.9
+  uses: github/codeql-action/init@2cb752a87e96af96708ab57187ab6372ee1973ab 
# v2.22.0
   with:
 languages: ${{ matrix.language }}
 # If you wish to specify custom queries, you can do so here or in a 
config file.
@@ -101,4 +101,4 @@ jobs:
 #  make release
 
 - name: Perform CodeQL Analysis
-  uses: 
github/codeql-action/analyze@ddccb873888234080b77e9bc2d4764d5ccaaccf9 # v2.21.9
+  uses: 
github/codeql-action/analyze@2cb752a87e96af96708ab57187ab6372ee1973ab # v2.22.0
diff --git a/.github/workflows/scorecards-analysis.yml 
b/.github/workflows/scorecards-analysis.yml
index d9a57ce..127533d 100644
--- a/.github/workflows/scorecards-analysis.yml
+++ b/.github/workflows/scorecards-analysis.yml
@@ -66,6 +66,6 @@ jobs:
   retention-days: 5
 
   - name: "Upload to code-scanning"
-uses: 
github/codeql-action/upload-sarif@ddccb873888234080b77e9bc2d4764d5ccaaccf9# 
2.21.9
+uses: 
github/codeql-action/upload-sarif@2cb752a87e96af96708ab57187ab6372ee1973ab# 
2.22.0
 with:
   sarif_file: results.sarif



[commons-crypto] branch dependabot/github_actions/github/codeql-action-2.22.0 deleted (was 4c43806)

2023-10-10 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch 
dependabot/github_actions/github/codeql-action-2.22.0
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


 was 4c43806  Bump github/codeql-action from 2.21.9 to 2.22.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



[commons-crypto] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-crypto.git


The following commit(s) were added to refs/heads/master by this push:
 new 1784a9b  Bump commons-parent
1784a9b is described below

commit 1784a9b60ab0115453c25f0b42df573db79ebc36
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:48:18 2023 -0400

Bump commons-parent
---
 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 32399eb..31d01e2 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -69,7 +69,7 @@
   [StepSecurity] Harden GitHub builds #228, #234.
   Fixes 
grammar and typos in Javadoc #233.  
   
-  Bump commons-parent from 56 to 61 
#225.
+  Bump commons-parent from 56 to 64 
#225.
 
 
   



[commons-csv] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-csv.git


The following commit(s) were added to refs/heads/master by this push:
 new a08d5915 Bump commons-parent
a08d5915 is described below

commit a08d59151c8677569c39e65cdc7946dc0870b809
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:52:17 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/conf/checkstyle/checkstyle-suppressions.xml | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 550eb9c2..08c47d57 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
   commons-csv
   1.10.1-SNAPSHOT
diff --git a/src/conf/checkstyle/checkstyle-suppressions.xml 
b/src/conf/checkstyle/checkstyle-suppressions.xml
index abff74c8..e1a4807c 100644
--- a/src/conf/checkstyle/checkstyle-suppressions.xml
+++ b/src/conf/checkstyle/checkstyle-suppressions.xml
@@ -20,4 +20,6 @@
 "https://checkstyle.org/dtds/suppressions_1_2.dtd";>
 
   
+  
+  
 



[commons-csv] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-csv.git


The following commit(s) were added to refs/heads/master by this push:
 new 94669844 Bump commons-parent
94669844 is described below

commit 9466984412b854ec593a032b5ca4e2bf64e1fa28
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:52:50 2023 -0400

Bump commons-parent
---
 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 0b682d09..6adf1732 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -52,7 +52,7 @@
   Misleading error message when QuoteMode set to None #352.
   
   Bump 
commons-io:commons-io: from 2.11.0 to 2.14.0.
-  Bump 
commons-parent from 57 to 62.
+  Bump 
commons-parent from 57 to 64.
   Bump h2 from 
2.1.214 to 2.2.224 #333, #349, #359.
   Bump 
commons-lang3 from 3.12.0 to 3.13.0.
   Update exception message in CSVRecord#getNextRecord() 
#348.



[commons-daemon] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-daemon.git


The following commit(s) were added to refs/heads/master by this push:
 new e9fc7b2  Bump commons-parent
e9fc7b2 is described below

commit e9fc7b20f37e92d8595df481882f409eeb16ea54
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:54:31 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index ac95712..4a1af25 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-61
+64
   
   4.0.0
   commons-daemon
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 43a1a38..f20d846 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -48,7 +48,7 @@
   
   
   
-Bump commons-parent from 57 to 61 (#93) #132.
+Bump commons-parent from 57 to 64, #93, #132.
   
 
 



[commons-dbcp] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-dbcp.git


The following commit(s) were added to refs/heads/master by this push:
 new a86e2247 Bump commons-parent
a86e2247 is described below

commit a86e22474d766c2c7ebdb1f74fdce6ef0762e695
Author: Gary Gregory 
AuthorDate: Tue Oct 10 07:56:09 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 61814467..a4c598a3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
   4.0.0
   commons-dbcp2
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 50d4a357..49065ffc 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -67,7 +67,7 @@ The  type attribute can be add,update,fix,remove.
   
   
   Bump h2 from 2.2.220 to 2.2.224, #308.
-  Bump 
commons-parent from 60 to 62.
+  Bump 
commons-parent from 60 to 64.
   Bump 
org.slf4j:slf4j-simple from 2.0.7 to 2.0.9 #301.
   Bump 
org.apache.commons:commons-pool2 from 2.11.1 to 2.12.0.
 



[commons-dbutils] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-dbutils.git


The following commit(s) were added to refs/heads/master by this push:
 new 039c827  Bump commons-parent
039c827 is described below

commit 039c827e5f5420c19e253c129b2ccd404e978033
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:05:37 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 5de9fcd..44eb6b9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
   4.0.0
   commons-dbutils
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0f2b188..96145a6 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -47,6 +47,9 @@ The  type attribute can be add,update,fix,remove.
   
   
   
+  
+Bump commons-parent from 62 to 64.
+  
 
 
   



[commons-digester] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-digester.git


The following commit(s) were added to refs/heads/master by this push:
 new 18fd3c77 Bump commons-parent
18fd3c77 is described below

commit 18fd3c77bb414c354320d75e79bc89b403661692
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:06:59 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6dbbe1c2..162cabfd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.commons
 commons-parent
-61
+64
   
 
   commons-digester3-parent
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 5d12c297..e4050b28 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -90,7 +90,7 @@
   Bump JUnit from 4.10 to 4.13.2 in #77, #78.
 
 
-  Bump commons-parent from 28 to 61.
+  Bump commons-parent from 28 to 64.
 
 
   Bump findbugs-maven-plugin from 2.3.2 to 3.0.5 #80.



[commons-digester] 01/03: Pick up maven-checkstyle-plugin version from parent

2023-10-10 Thread ggregory
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-digester.git

commit c064128271edc83f454256ecd1aee56e0a160128
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:08:27 2023 -0400

Pick up maven-checkstyle-plugin version from parent
---
 pom.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 162cabfd..e7a6b18a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -328,7 +328,6 @@
 
   org.apache.maven.plugins
   maven-checkstyle-plugin
-  2.8
 
 
   org.apache.maven.plugins



[commons-digester] 03/03: Pick up maven-compiler-plugin version from parent

2023-10-10 Thread ggregory
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-digester.git

commit 9b206b8eecd84337400016999074a72e14eb5aa2
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:10:48 2023 -0400

Pick up maven-compiler-plugin version from parent
---
 pom.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index a61f446f..b955cf50 100644
--- a/pom.xml
+++ b/pom.xml
@@ -336,7 +336,6 @@
 
   org.apache.maven.plugins
   maven-compiler-plugin
-  3.0
 
   
 



[commons-digester] 02/03: Pick up maven-deploy-plugin version from parent

2023-10-10 Thread ggregory
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-digester.git

commit 75c2cf8e8cbe9c2ca384bb5e7d277d9a6ccdb5f4
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:09:33 2023 -0400

Pick up maven-deploy-plugin version from parent
---
 pom.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e7a6b18a..a61f446f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -332,7 +332,6 @@
 
   org.apache.maven.plugins
   maven-deploy-plugin
-  2.7
 
 
   org.apache.maven.plugins



[commons-digester] branch master updated (18fd3c77 -> 9b206b8e)

2023-10-10 Thread ggregory
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-digester.git


from 18fd3c77 Bump commons-parent
 new c0641282 Pick up maven-checkstyle-plugin version from parent
 new 75c2cf8e Pick up maven-deploy-plugin version from parent
 new 9b206b8e Pick up maven-compiler-plugin version from parent

The 3 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 | 3 ---
 1 file changed, 3 deletions(-)



[commons-email] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-email.git


The following commit(s) were added to refs/heads/master by this push:
 new f9f2a9c  Bump commons-parent
f9f2a9c is described below

commit f9f2a9c4cf2e2378a57277a3f239e2dd5f4d8559
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:13:51 2023 -0400

Bump commons-parent

Fix reference to Spotbugs file filter
---
 pom.xml | 4 ++--
 src/changes/changes.xml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 47527c6..dfde352 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
 
   org.apache.commons
   commons-parent
-  62
+  64
 
 4.0.0
 commons-email
@@ -423,7 +423,7 @@
 com.github.spotbugs
 spotbugs-maven-plugin
 
-  
${basedir}/conf/spotbugs-exclude-filter.xml
+  
${basedir}/src/conf/spotbugs-exclude-filter.xml
 
   
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 042efbf..5625202 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -71,7 +71,7 @@
 Bump javax.mail dependency to 1.6.1, so that i18n is supported for 
email addresses.
   
   
-Bump commons-parent from 50 to 62, #118, #128.
+Bump commons-parent from 50 to 64, #118, #128.
   
   
 Bump spotbugs-maven-plugin from 4.0.0 to 4.7.2 #18.



[commons-exec] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-exec.git


The following commit(s) were added to refs/heads/master by this push:
 new 1b744bb  Bump commons-parent
1b744bb is described below

commit 1b744bb0685e607158464dc2d7abedabf3c8736d
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:16:41 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 41c70b2..16f9723 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.commons
 commons-parent
-62
+64
 
 4.0.0
 Apache Commons Exec
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index f8ff1e1..870d850 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -79,7 +79,7 @@
 Bump maven-checkstyle-plugin from 2.13 to 3.2.0 #29, #60.
 
 
-Bump commons-parent from 52 to 62 #49, #64, #79, #88, #105.
+Bump commons-parent from 52 to 64, #49, #64, #79, #88, #105.
 
 
 Bump japicmp-maven-plugin from 0.15.6 to 0.16.0.



[commons-fileupload] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new 54cca02e Bump commons-parent
54cca02e is described below

commit 54cca02ea417159ccd1e732d909d544b29216491
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:18:34 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8612e57a..80a56c92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   commons-fileupload2
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 62a5a17a..7323da4e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -54,7 +54,7 @@ The  type attribute can be add,update,fix,remove.
   Generate some OSGi metadata.
   
   Bump Java from 8 to 11.
-  Bump commons-parent from 58 to 62.
+  Bump commons-parent from 58 to 64.
   Bump commons-lang3 from 3.12.0 to 3.13.0.  
   Bump commons-io from 2.13.0 to 2.14.0.  
 



[commons-imaging] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-imaging.git


The following commit(s) were added to refs/heads/master by this push:
 new 8205ceca Bump commons-parent
8205ceca is described below

commit 8205cecab6b9d481e9fe67e29fe18e87a4842e60
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:21:10 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2ac48cca..ce7666ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   commons-imaging
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ddf5ad3a..97623851 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -96,7 +96,7 @@ The  type attribute can be add,update,fix,remove.
 Bump actions/setup-java.
   
   
-Bump commons-parent from 52 to 62 #238, #252, #262, #293.
+Bump commons-parent from 52 to 64, #238, #252, #262, #293.
   
   
 Bump spotbugs-maven-plugin from 4.6.0.0 to 4.7.3.0 #221, #224, #226, 
#236, #242, #247, #248.



[commons-io] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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


The following commit(s) were added to refs/heads/master by this push:
 new 4ee3e858 Bump commons-parent
4ee3e858 is described below

commit 4ee3e8585c10af7449693891e45ef0bf9dfc9c87
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:22:47 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c1549901..bf378bf9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
   4.0.0
   commons-io
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 20ce3cba..9a568969 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -108,6 +108,9 @@ The  type attribute can be add,update,fix,remove.
 Add PathUtilsContentEqualsBenchmark.
   
   
+  
+Bump org.apache.commons:commons-parent from 62 to 64.
+  
 
 
   



[commons-io] branch master updated: Javadoc

2023-10-10 Thread ggregory
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


The following commit(s) were added to refs/heads/master by this push:
 new 8bee3643 Javadoc
8bee3643 is described below

commit 8bee364340a1df8337d341aad531d4173e277b6c
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:29:48 2023 -0400

Javadoc

StreamIterator implements AutoCloseable to match Stream.
Stream extends BaseStream which implements AutoCloseable.
---
 .../java/org/apache/commons/io/StreamIterator.java | 18 +-
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/StreamIterator.java 
b/src/main/java/org/apache/commons/io/StreamIterator.java
index a7491343..e9b3226f 100644
--- a/src/main/java/org/apache/commons/io/StreamIterator.java
+++ b/src/main/java/org/apache/commons/io/StreamIterator.java
@@ -17,29 +17,28 @@
 
 package org.apache.commons.io;
 
-import java.io.Closeable;
 import java.util.Iterator;
 import java.util.Objects;
 import java.util.stream.Stream;
 
 /**
- * Wraps and presents a {@link Stream} as an {@link AutoCloseable} {@link 
Iterator} resource that automatically closes itself when reaching the end of 
stream.
+ * Wraps and presents a {@link Stream} as a {@link AutoCloseable} {@link 
Iterator} resource that automatically closes itself when reaching the end of 
stream.
  *
  * Warning
  * 
- * In order to close the stream, the call site MUST either close the stream it 
allocated OR call the iterator until the end.
+ * In order to close the stream, the call site MUST either close the stream it 
allocated OR call this iterator until the end.
  * 
  *
  * @param  The {@link Stream} and {@link Iterator} type.
  * @since 2.9.0
  */
-final class StreamIterator implements Iterator, Closeable {
+final class StreamIterator implements Iterator, AutoCloseable {
 
 /**
  * Wraps and presents a stream as a closable resource that automatically 
closes itself when reaching the end of stream.
  * Warning
  * 
- * In order to close the stream, the call site MUST either close the 
stream it allocated OR call the iterator until the end.
+ * In order to close the stream, the call site MUST either close the 
stream it allocated OR call this iterator until the end.
  * 
  *
  * @param The stream and iterator type.
@@ -50,10 +49,19 @@ final class StreamIterator implements Iterator, 
Closeable {
 return new StreamIterator<>(stream);
 }
 
+/**
+ * The given stream's Iterator.
+ */
 private final Iterator iterator;
 
+/**
+ * The given stream.
+ */
 private final Stream stream;
 
+/**
+ * Whether {@link #close()} has been called.
+ */
 private boolean closed;
 
 private StreamIterator(final Stream stream) {



[commons-io] branch master updated: Add org.apache.commons.io.StreamIterator

2023-10-10 Thread ggregory
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


The following commit(s) were added to refs/heads/master by this push:
 new ae02268b Add org.apache.commons.io.StreamIterator
ae02268b is described below

commit ae02268b005c03435b181fb44f2f57046b94609f
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:35:13 2023 -0400

Add org.apache.commons.io.StreamIterator
---
 src/changes/changes.xml | 3 +++
 src/main/java/org/apache/commons/io/StreamIterator.java | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 9a568969..2de04467 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -107,6 +107,9 @@ The  type attribute can be add,update,fix,remove.
   
 Add PathUtilsContentEqualsBenchmark.
   
+  
+Add org.apache.commons.io.StreamIterator.
+  
   
   
 Bump org.apache.commons:commons-parent from 62 to 64.
diff --git a/src/main/java/org/apache/commons/io/StreamIterator.java 
b/src/main/java/org/apache/commons/io/StreamIterator.java
index e9b3226f..a77a9f7b 100644
--- a/src/main/java/org/apache/commons/io/StreamIterator.java
+++ b/src/main/java/org/apache/commons/io/StreamIterator.java
@@ -32,7 +32,7 @@ import java.util.stream.Stream;
  * @param  The {@link Stream} and {@link Iterator} type.
  * @since 2.9.0
  */
-final class StreamIterator implements Iterator, AutoCloseable {
+public final class StreamIterator implements Iterator, AutoCloseable {
 
 /**
  * Wraps and presents a stream as a closable resource that automatically 
closes itself when reaching the end of stream.



[commons-jci] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-jci.git


The following commit(s) were added to refs/heads/master by this push:
 new 0bc4897  Bump commons-parent
0bc4897 is described below

commit 0bc4897da32036b67ef91c6ceefdff856c6a1957
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:40:44 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 1917736..65d8e76 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
 
 org.apache.commons
 commons-parent
-61
+64
 
 pom
 commons-jci2
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index bebd500..1c7236b 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -113,7 +113,7 @@ The  type attribute can be add,update,fix,remove.
 Bump taglist-maven-plugin from 2.2 to 3.0.0 #28.
   
   
-Bump commons-parent from 56 to 61 #36, #37.
+Bump commons-parent from 56 to 64 #36, #37.
   
 
   



[commons-jcs] 02/03: Bump commons-parent

2023-10-10 Thread ggregory
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-jcs.git

commit a59668879987ecca5ca4e3c6e785d1b9dbd07a76
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:45:42 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 20ad3ce1..dba4ff48 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.commons
 commons-parent
-59
+64
   
 
   commons-jcs3
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 07633ea7..45802728 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -54,6 +54,9 @@
 
Bump commons-io from 2.13.0 to 2.14.0 #11.
 
+
+   Bump org.apache.commons:commons-parent from 59 to 64.
+
 
 
 



[commons-jcs] 03/03: Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-jcs

2023-10-10 Thread ggregory
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-jcs.git

commit e1f5d104323fb8f5e677e316b843fe0d864a810c
Merge: a5966887 78e5a2ef
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:45:52 2023 -0400

Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-jcs

 checkstyle.xml | 291 +++--
 .../commons/jcs3/ConcurrentRemovalLoadTest.java|   8 +-
 .../apache/commons/jcs3/TestTCPLateralCache.java   |   6 +-
 .../block/BlockDiskCacheConcurrentUnitTest.java|  10 +-
 ...BlockDiskCacheSameRegionConcurrentUnitTest.java |   8 +-
 ...dexedDiskCacheConcurrentNoDeadLockUnitTest.java |   8 +-
 .../IndexedDiskCacheConcurrentUnitTest.java|  10 +-
 .../indexed/IndexedDiskCacheNoMemoryUnitTest.java  |   8 +-
 ...dexedDiskCacheSameRegionConcurrentUnitTest.java |   8 +-
 .../jdbc/hsql/HSQLDiskCacheConcurrentUnitTest.java |  10 +-
 .../tcp/LateralTCPNoDeadLockConcurrentTest.java|   8 +-
 .../jcs3/engine/EventQueueConcurrentLoadTest.java  |   8 +-
 .../lru/LHMLRUMemoryCacheConcurrentUnitTest.java   |  12 +-
 .../lru/LRUMemoryCacheConcurrentUnitTest.java  |   8 +-
 .../utils/struct/LRUMapConcurrentUnitTest.java |   4 +-
 .../jcs3/jcache/extras/cdi/CacheManagerBean.java   |  13 +-
 .../jcs3/jcache/extras/cdi/CacheProviderBean.java  |  13 +-
 .../jcache/extras/cdi/ExtraJCacheExtension.java|   3 +-
 .../jcache/extras/loader/CacheLoaderAdapter.java   |   5 +-
 .../jcache/extras/loader/CompositeCacheLoader.java |  12 +-
 .../jcs3/jcache/extras/web/InMemoryResponse.java   |   1 +
 .../jcache/extras/writer/AsyncCacheWriter.java |   9 +-
 .../jcache/extras/writer/CacheWriterAdapter.java   |   3 +-
 .../jcache/extras/writer/CompositeCacheWriter.java |   8 +-
 .../jcs3/jcache/extras/InternalCacheRule.java  |   9 +-
 .../extras/cdi/ExtraJCacheExtensionTest.java   |  12 +-
 .../extras/loader/CacheLoaderAdapterTest.java  |  17 +-
 .../extras/loader/CompositeCacheLoaderTest.java|  11 +-
 .../extras/writer/CacheWriterAdapterTest.java  |  21 +-
 .../extras/writer/CompositeCacheWriterTest.java|  15 +-
 .../jcache/openjpa/OpenJPAJCacheDataCache.java |  11 +-
 .../jcache/openjpa/OpenJPAJCacheDerivation.java|   4 +-
 .../jcache/openjpa/OpenJPAJCacheQueryCache.java|  15 +-
 .../commons/jcs3/jcache/OWBBeanProvider.java   |   9 +-
 .../commons/jcs3/jcache/JCSCachingProvider.java|   7 +-
 .../commons/jcs3/jcache/JCSConfiguration.java  |   7 +-
 .../commons/jcs3/jcache/TempStateCacheView.java|  20 +-
 .../jcache/cdi/CacheInvocationParameterImpl.java   |   3 +-
 .../jcs3/jcache/cdi/CacheKeyGeneratorImpl.java |   3 +-
 .../jcs3/jcache/cdi/CacheMethodDetailsImpl.java|   5 +-
 .../jcs3/jcache/cdi/CacheResolverFactoryImpl.java  |   3 +-
 .../commons/jcs3/jcache/cdi/CacheResolverImpl.java |   3 +-
 .../jcs3/jcache/cdi/CacheResultInterceptor.java|   1 +
 .../jcs3/jcache/cdi/GeneratedCacheKeyImpl.java |   3 +-
 .../cdi/MakeJCacheCDIInterceptorFriendly.java  |   5 +-
 .../jmx/ConfigurableMBeanServerIdBuilder.java  |   5 +-
 .../org/apache/commons/jcs3/jcache/jmx/JMXs.java   |   3 +-
 .../org/apache/commons/jcs3/jcache/CacheTest.java  |  53 ++--
 .../commons/jcs3/jcache/CachingProviderTest.java   |  10 +-
 .../commons/jcs3/jcache/NotSerializableTest.java   |   8 +-
 .../jcs3/jcache/cdi/CDIJCacheHelperTest.java   |   7 +-
 .../jcs/auxiliary/disk/file/FileDiskCache.java |  16 +-
 .../disk/file/FileDiskCacheAttributes.java |  21 +-
 .../auxiliary/disk/file/FileDiskCacheFactory.java  |  33 +--
 .../auxiliary/disk/file/FileDiskCacheManager.java  |   8 +-
 .../disk/file/FileDiskCacheFactoryUnitTest.java|  12 +-
 .../auxiliary/disk/file/FileDiskCacheUnitTest.java |  11 +-
 pom.xml|   2 -
 58 files changed, 419 insertions(+), 428 deletions(-)




[commons-jcs] branch master updated (78e5a2ef -> e1f5d104)

2023-10-10 Thread ggregory
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-jcs.git


from 78e5a2ef Use Checkstyle to validate import order
 new 74adaa58 Sort
 new a5966887 Bump commons-parent
 new e1f5d104 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jcs

The 3 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 | 14 +++---
 2 files changed, 12 insertions(+), 4 deletions(-)



[commons-jcs] 01/03: Sort

2023-10-10 Thread ggregory
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-jcs.git

commit 74adaa58245a02e7dcb521f7655c4d4a91da2503
Author: Gary Gregory 
AuthorDate: Tue Oct 10 08:43:43 2023 -0400

Sort
---
 src/changes/changes.xml | 11 ---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index fbc145d2..07633ea7 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -22,6 +22,11 @@


 
+
+
+   Remove all deprecated code
+
+
 
Update dependency servlet-api 2.5 to javax.servlet-api 3.1.0
 
@@ -35,10 +40,10 @@
Update Tomcat libraries 7.0.22 to 9.0.79
 
 
-   From this release on we require Java 17
+   Bump Java to 17.
 
-
-   Remove all deprecated code
+
+   From this release on we require Java 17
 
 
Migrate all tests to JUnit 4



[commons-chain] branch master updated: Superflous

2023-10-10 Thread sebb
This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-chain.git


The following commit(s) were added to refs/heads/master by this push:
 new b329496  Superflous
b329496 is described below

commit b329496a8b6975581118f543d93d970f3055ae44
Author: Sebb 
AuthorDate: Tue Oct 10 14:40:07 2023 +0100

Superflous
---
 .github/workflows/maven.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index b000212..6b5fcd6 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -35,8 +35,8 @@ jobs:
 
 steps:
 - uses: actions/checkout@v3.0.2
-  with:
-persist-credentials: false
+  with:
+persist-credentials: false
 - uses: actions/cache@v3.0.3
   with:
 path: ~/.m2/repository
@@ -49,6 +49,6 @@ jobs:
 distribution: 'temurin'
 java-version: ${{ matrix.java }}
 - name: Build with Maven
-  run: mvn -V -e --file pom.xml --no-transfer-progress
+  run: mvn -V -e --no-transfer-progress
 
 # For Java 11, you can be more strict: 
-DadditionalJOption=-Xdoclint/package:-org.apache.commons.configuration2.plist



[commons-io] branch master updated: Account for JApiCmp false positive in https://github.com/siom79/japicmp/issues/365

2023-10-10 Thread ggregory
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


The following commit(s) were added to refs/heads/master by this push:
 new 529fce7a Account for JApiCmp false positive in 
https://github.com/siom79/japicmp/issues/365
529fce7a is described below

commit 529fce7a110a617bf23aad17c2d928f097246c11
Author: Gary Gregory 
AuthorDate: Tue Oct 10 09:46:22 2023 -0400

Account for JApiCmp false positive in
https://github.com/siom79/japicmp/issues/365
---
 pom.xml | 8 
 1 file changed, 8 insertions(+)

diff --git a/pom.xml b/pom.xml
index bf378bf9..46fbfe08 100644
--- a/pom.xml
+++ b/pom.xml
@@ -434,6 +434,14 @@ file comparators, endian transformation classes, and much 
more.
   
 com.github.siom79.japicmp
 japicmp-maven-plugin
+
+  
+
+   
+   org.apache.commons.io.StreamIterator
+ 
+  
+  
   
   
 org.apache.maven.plugins



[commons-io] branch master updated: Javadoc

2023-10-10 Thread ggregory
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


The following commit(s) were added to refs/heads/master by this push:
 new f3b44601 Javadoc
f3b44601 is described below

commit f3b44601abf9b79ba90780b963b4b8f8548bd9b1
Author: Gary Gregory 
AuthorDate: Tue Oct 10 09:47:59 2023 -0400

Javadoc
---
 src/main/java/org/apache/commons/io/StreamIterator.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/StreamIterator.java 
b/src/main/java/org/apache/commons/io/StreamIterator.java
index a77a9f7b..a1ed9c37 100644
--- a/src/main/java/org/apache/commons/io/StreamIterator.java
+++ b/src/main/java/org/apache/commons/io/StreamIterator.java
@@ -30,7 +30,7 @@ import java.util.stream.Stream;
  * 
  *
  * @param  The {@link Stream} and {@link Iterator} type.
- * @since 2.9.0
+ * @since 2.15.0
  */
 public final class StreamIterator implements Iterator, AutoCloseable {
 



[commons-jexl] branch master updated (9e968ef0 -> a90773dc)

2023-10-10 Thread ggregory
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-jexl.git


from 9e968ef0 Use Checkstyle to validate import order
 new b00a9076 Bump commons-parent
 new a90773dc Fix Javadoc empty tag warning

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 +-
 .../java/org/apache/commons/jexl3/JexlFeatures.java | 21 -
 3 files changed, 22 insertions(+), 3 deletions(-)



[commons-jexl] 02/02: Fix Javadoc empty tag warning

2023-10-10 Thread ggregory
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-jexl.git

commit a90773dc448e647537db1669f34cee2592dbfd04
Author: Gary Gregory 
AuthorDate: Tue Oct 10 09:51:36 2023 -0400

Fix Javadoc empty tag warning
---
 .../java/org/apache/commons/jexl3/JexlFeatures.java | 21 -
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java 
b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
index 163807e9..875ac601 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
@@ -271,8 +271,10 @@ public final class JexlFeatures {
  * Sets whether register are enabled.
  * 
  * This is mostly used internally during execution of 
JexlEngine.{g,s}etProperty.
+ * 
  * 
  * When disabled, parsing a script/expression using the register syntax 
will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -293,6 +295,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using a local variable or 
parameter syntax
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -313,6 +316,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactical constructs 
modifying variables
  * including all potentially ant-ish variables will throw a 
parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -333,6 +337,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactical constructs 
modifying variables
  * or members will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -353,6 +358,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using 'obj[ ref ]' where ref 
is not a string or integer literal
  * will throw a parsing exception;
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -373,6 +379,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using 'obj.method()'
  * will throw a parsing exception;
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -393,6 +400,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression creating one of these 
literals
  * will throw a parsing exception;
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -413,6 +421,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using 'new(...)' will throw 
a parsing exception;
  * using a class as functor will fail at runtime.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -433,6 +442,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic looping 
constructs (for,while)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -453,6 +463,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic lambda 
constructs (->,function)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -473,6 +484,7 @@ public final class JexlFeatures {
  * 
  * When disabled, lambda-captured variables are implicitly converted to 
read-write local variable (let),
  * when enabled, those are implicitly converted to read-only local 
variables (const).
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -493,6 +505,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic thin-arrow 
(-<)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  * @since 3.3
@@ -515,6 +528,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic fat-arrow 
(=<)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features 

[commons-jexl] 01/02: Bump commons-parent

2023-10-10 Thread ggregory
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-jexl.git

commit b00a9076f858fedaa5b4ea1ea9580f4228848efb
Author: Gary Gregory 
AuthorDate: Tue Oct 10 09:48:36 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 930be306..0d69a4ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
 
 org.apache.commons
 commons-parent
-62
+64
 
 
 commons-jexl3
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a7b40cfd..cc168002 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,7 +56,7 @@
 Bump github actions.
 
 
-Bump commons-parent from 57 to 62.
+Bump commons-parent from 57 to 64.
 
 
 Bump org.ow2.asm:asm from 9.5 to 9.6 #200.



[commons-statistics] branch master updated: Update constructor argument name

2023-10-10 Thread aherbert
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-statistics.git


The following commit(s) were added to refs/heads/master by this push:
 new d28b6e6  Update constructor argument name
d28b6e6 is described below

commit d28b6e692140abc31b4c92dfd7a9ba59382ca962
Author: aherbert 
AuthorDate: Tue Oct 10 15:22:37 2023 +0100

Update constructor argument name
---
 .../java/org/apache/commons/statistics/descriptive/Kurtosis.java| 6 +++---
 .../java/org/apache/commons/statistics/descriptive/Skewness.java| 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Kurtosis.java
 
b/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Kurtosis.java
index 07af564..61e87e0 100644
--- 
a/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Kurtosis.java
+++ 
b/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Kurtosis.java
@@ -81,10 +81,10 @@ public final class Kurtosis implements DoubleStatistic, 
DoubleStatisticAccumulat
 /**
  * Creates an instance with the sum of fourth deviations from the mean.
  *
- * @param ss Sum of fourth deviations.
+ * @param sq Sum of fourth deviations.
  */
-private Kurtosis(SumOfFourthDeviations ss) {
-this.sq = ss;
+private Kurtosis(SumOfFourthDeviations sq) {
+this.sq = sq;
 }
 
 /**
diff --git 
a/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Skewness.java
 
b/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Skewness.java
index 994e72e..1c24771 100644
--- 
a/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Skewness.java
+++ 
b/commons-statistics-descriptive/src/main/java/org/apache/commons/statistics/descriptive/Skewness.java
@@ -82,10 +82,10 @@ public final class Skewness implements DoubleStatistic, 
DoubleStatisticAccumulat
 /**
  * Creates an instance with the sum of cubed deviations from the mean.
  *
- * @param ss Sum of cubed deviations.
+ * @param sc Sum of cubed deviations.
  */
-private Skewness(SumOfCubedDeviations ss) {
-this.sc = ss;
+private Skewness(SumOfCubedDeviations sc) {
+this.sc = sc;
 }
 
 /**



[commons-text] branch master updated: Add StringSubstitutor.toString()

2023-10-10 Thread ggregory
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-text.git


The following commit(s) were added to refs/heads/master by this push:
 new 9c50f85b Add StringSubstitutor.toString()
9c50f85b is described below

commit 9c50f85b863faa405278512295d10e55c2105f2c
Author: Gary Gregory 
AuthorDate: Tue Oct 10 10:26:37 2023 -0400

Add StringSubstitutor.toString()
---
 src/changes/changes.xml |  1 +
 .../java/org/apache/commons/text/StringSubstitutor.java | 17 +
 2 files changed, 18 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 9020e02d..5a2749a0 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -73,6 +73,7 @@ The  type attribute can be add,update,fix,remove.
 Add @FunctionalInterface to FormatFactory.
 Add RandomStringGenerator.builder().
 Add 
XmlEncoderStringLookup/XmlDecoderStringLookup #449.
+Add StringSubstitutor.toString().
 
 Bump actions/cache.
 Bump actions/setup-java.
diff --git a/src/main/java/org/apache/commons/text/StringSubstitutor.java 
b/src/main/java/org/apache/commons/text/StringSubstitutor.java
index b9960d99..3b7f493a 100644
--- a/src/main/java/org/apache/commons/text/StringSubstitutor.java
+++ b/src/main/java/org/apache/commons/text/StringSubstitutor.java
@@ -1548,4 +1548,21 @@ public class StringSubstitutor {
 }
 return new Result(altered, lengthChange);
 }
+
+/**
+ * Returns a string representation of the object.
+ *
+ * @return a string representation of the object.
+ * @since 1.11.0
+ */
+@Override
+public String toString() {
+StringBuilder builder = new StringBuilder();
+builder.append("StringSubstitutor 
[disableSubstitutionInValues=").append(disableSubstitutionInValues).append(", 
enableSubstitutionInVariables=")
+.append(enableSubstitutionInVariables).append(", 
enableUndefinedVariableException=").append(enableUndefinedVariableException)
+.append(", escapeChar=").append(escapeChar).append(", 
prefixMatcher=").append(prefixMatcher).append(", preserveEscapes=")
+.append(preserveEscapes).append(", 
suffixMatcher=").append(suffixMatcher).append(", 
valueDelimiterMatcher=").append(valueDelimiterMatcher)
+.append(", 
variableResolver=").append(variableResolver).append("]");
+return builder.toString();
+}
 }



[commons-vfs] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-vfs.git


The following commit(s) were added to refs/heads/master by this push:
 new d52561d0 Bump commons-parent
d52561d0 is described below

commit d52561d084e9eddec6b6ba5395606905c1c19222
Author: Gary Gregory 
AuthorDate: Tue Oct 10 10:52:53 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index fbf6e79e..2e500025 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   4.0.0
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 15a9b448..b9e67e1b 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -283,7 +283,7 @@ The  type attribute can be add,update,fix,remove.
 Bump slf4j.version from 1.7.26 to 1.7.36 #244.
   
   
-Bump commons-parent from 52 to 62 #302, #349, #362.
+Bump commons-parent from 52 to 64 #302, #349, #362.
   
   
 Bump org.ow2.asm:asm from 9.2 to 9.4.



[commons-validator] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-validator.git


The following commit(s) were added to refs/heads/master by this push:
 new 17bbcdbb Bump commons-parent
17bbcdbb is described below

commit 17bbcdbb518ebc69f849efecd3d6b21fe6f0ea73
Author: Gary Gregory 
AuthorDate: Tue Oct 10 10:57:54 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 6cf8b372..5ac27771 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   commons-validator
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 03aa3468..90e7ec1a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -133,7 +133,7 @@ The  type attribute can be add,update,fix,remove.
   Bump maven-pmd-plugin from 3.13.0 to 3.19.0 #69, #77, #80, #81.
 
 
-  Bump commons-parent from 52 to 62 #83, #107, #111, #132.
+  Bump commons-parent from 52 to 64 #83, #107, #111, #132.
 
 
   Bump japicmp-maven-plugin from 0.15.3 to 0.15.7.



[commons-text] branch master updated (9c50f85b -> d873cbf4)

2023-10-10 Thread ggregory
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-text.git


from 9c50f85b Add StringSubstitutor.toString()
 new adbf078e Make private static classes final
 new d873cbf4 Bump commons-parent

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/text/diff/StringsComparator.java | 2 +-
 src/main/java/org/apache/commons/text/numbers/DoubleFormat.java   | 6 +++---
 .../java/org/apache/commons/text/ExtendedMessageFormatTest.java   | 8 
 src/test/java/org/apache/commons/text/StrBuilderTest.java | 2 +-
 src/test/java/org/apache/commons/text/TextStringBuilderTest.java  | 2 +-
 .../java/org/apache/commons/text/diff/ReplacementsFinderTest.java | 2 +-
 .../java/org/apache/commons/text/diff/StringsComparatorTest.java  | 2 +-
 .../commons/text/jmh/LongestCommonSubsequencePerformance.java | 2 +-
 .../org/apache/commons/text/lookup/AbstractStringLookupTest.java  | 2 +-
 .../org/apache/commons/text/matcher/StringMatcherFactoryTest.java | 2 +-
 12 files changed, 17 insertions(+), 17 deletions(-)



[commons-text] 02/02: Bump commons-parent

2023-10-10 Thread ggregory
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-text.git

commit d873cbf4c6c633c0256cba38d4adaebd249fd0fe
Author: Gary Gregory 
AuthorDate: Tue Oct 10 11:08:34 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 753d1a81..2058222d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
   commons-text
   1.11.0-SNAPSHOT
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 5a2749a0..1b3cb7f6 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -84,7 +84,7 @@ The  type attribute can be add,update,fix,remove.
 Bump spotbugs from 4.7.2 to 4.7.3 #373.
 Bump mockito-inline from 4.8.0 to 4.11.0 #380, #389, #396, 
#400.
 Bump jmh.version from 1.35 to 1.36 #388.
-Bump commons-parent from 54 to 62 #392, #401.
+Bump commons-parent from 54 to 64 #392, #401.
 Bump assertj-core from 3.23.1 to 3.24.2 #405, #410.
 Bump maven-checkstyle-plugin from 3.2.0 to 3.2.1 
#407.
 Bump commons-io from 2.11.0 to 2.14.0.



[commons-text] 01/02: Make private static classes final

2023-10-10 Thread ggregory
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-text.git

commit adbf078eb46682d02fce163881bcc2eb39abebb1
Author: Gary Gregory 
AuthorDate: Tue Oct 10 11:08:29 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/commons/text/diff/StringsComparator.java | 2 +-
 src/main/java/org/apache/commons/text/numbers/DoubleFormat.java   | 6 +++---
 .../java/org/apache/commons/text/ExtendedMessageFormatTest.java   | 8 
 src/test/java/org/apache/commons/text/StrBuilderTest.java | 2 +-
 src/test/java/org/apache/commons/text/TextStringBuilderTest.java  | 2 +-
 .../java/org/apache/commons/text/diff/ReplacementsFinderTest.java | 2 +-
 .../java/org/apache/commons/text/diff/StringsComparatorTest.java  | 2 +-
 .../commons/text/jmh/LongestCommonSubsequencePerformance.java | 2 +-
 .../org/apache/commons/text/lookup/AbstractStringLookupTest.java  | 2 +-
 .../org/apache/commons/text/matcher/StringMatcherFactoryTest.java | 2 +-
 10 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/diff/StringsComparator.java 
b/src/main/java/org/apache/commons/text/diff/StringsComparator.java
index bafeb405..5bdb4e49 100644
--- a/src/main/java/org/apache/commons/text/diff/StringsComparator.java
+++ b/src/main/java/org/apache/commons/text/diff/StringsComparator.java
@@ -56,7 +56,7 @@ public class StringsComparator {
  * This class is a simple placeholder to hold the end part of a path
  * under construction in a {@link StringsComparator StringsComparator}.
  */
-private static class Snake {
+private static final class Snake {
 
 /** Start index. */
 private final int start;
diff --git a/src/main/java/org/apache/commons/text/numbers/DoubleFormat.java 
b/src/main/java/org/apache/commons/text/numbers/DoubleFormat.java
index 407ba687..8c7c4e4a 100644
--- a/src/main/java/org/apache/commons/text/numbers/DoubleFormat.java
+++ b/src/main/java/org/apache/commons/text/numbers/DoubleFormat.java
@@ -659,7 +659,7 @@ public enum DoubleFormat {
 /**
  * Format class that uses engineering notation for all values.
  */
-private static class EngineeringDoubleFormat extends AbstractDoubleFormat {
+private static final class EngineeringDoubleFormat extends 
AbstractDoubleFormat {
 
 /**
  * Constructs a new instance.
@@ -715,7 +715,7 @@ public enum DoubleFormat {
  * Format class that produces plain decimal strings that do not use
  * scientific notation.
  */
-private static class PlainDoubleFormat extends AbstractDoubleFormat {
+private static final class PlainDoubleFormat extends AbstractDoubleFormat {
 
 /**
  * Constructs a new instance.
@@ -737,7 +737,7 @@ public enum DoubleFormat {
 /**
  * Format class that uses scientific notation for all values.
  */
-private static class ScientificDoubleFormat extends AbstractDoubleFormat {
+private static final class ScientificDoubleFormat extends 
AbstractDoubleFormat {
 
 /**
  * Constructs a new instance.
diff --git 
a/src/test/java/org/apache/commons/text/ExtendedMessageFormatTest.java 
b/src/test/java/org/apache/commons/text/ExtendedMessageFormatTest.java
index 6344fd65..93995c0c 100644
--- a/src/test/java/org/apache/commons/text/ExtendedMessageFormatTest.java
+++ b/src/test/java/org/apache/commons/text/ExtendedMessageFormatTest.java
@@ -46,7 +46,7 @@ public class ExtendedMessageFormatTest {
 /**
  * {@link Format} implementation which converts to lower case.
  */
-private static class LowerCaseFormat extends Format {
+private static final class LowerCaseFormat extends Format {
 static final Format INSTANCE = new LowerCaseFormat();
 static final FormatFactory FACTORY = (n, a, l) -> 
LowerCaseFormat.INSTANCE;
 private static final long serialVersionUID = 1L;
@@ -65,7 +65,7 @@ public class ExtendedMessageFormatTest {
 /**
  * Alternative ExtendedMessageFormat impl.
  */
-private static class OtherExtendedMessageFormat extends 
ExtendedMessageFormat {
+private static final class OtherExtendedMessageFormat extends 
ExtendedMessageFormat {
 private static final long serialVersionUID = 1L;
 
 OtherExtendedMessageFormat(final String pattern, final Locale locale,
@@ -77,7 +77,7 @@ public class ExtendedMessageFormatTest {
 /**
  * {@link FormatFactory} implementation to override date format "short" to 
"default".
  */
-private static class OverrideShortDateFormatFactory {
+private static final class OverrideShortDateFormatFactory {
 static final FormatFactory FACTORY = (n, a, l) -> !"short".equals(a) ? 
null
 : l == null ? DateFormat
 .getDateInstance(DateFormat.DEFAULT) : DateFormat
@@ -87,7 +87,7 @@ public class ExtendedMes

[commons-scxml] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-scxml.git


The following commit(s) were added to refs/heads/master by this push:
 new 63748ef  Bump commons-parent
63748ef is described below

commit 63748ef05ab01472c93d06efb04c2b0b8b555ca2
Author: Gary Gregory 
AuthorDate: Tue Oct 10 11:32:20 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 31043cd..531e127 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   4.0.0
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ddd844a..0eb91c5 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -338,7 +338,7 @@
   Bump actions/checkout from 2 to current #34, #75.
   Bump 
actions/setup-java from 1.4.0 to current #49, #79.
   Bump 
actions/upload-artifact from 3.1.0 to current #82.
-  Bump commons-parent from 48 to 62 #48, #72, #90, #100.
+  Bump commons-parent from 48 to 64 #48, #72, #90, #100.
   Bump commons-logging from 1.1.3 to 
1.2 #12.
   Bump maven-antrun-plugin from 1.7 
to 3.1.0 #14, #51.
   Bump exec-maven-plugin from 1.3.2 
to 3.1.0 #13, #63.



[commons-rdf] branch master updated: Bump commons-parent but skip Moditect

2023-10-10 Thread ggregory
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-rdf.git


The following commit(s) were added to refs/heads/master by this push:
 new 64fc3812 Bump commons-parent but skip Moditect
64fc3812 is described below

commit 64fc381252523ac38f722337ef0eeaee7354a81b
Author: Gary Gregory 
AuthorDate: Tue Oct 10 11:45:50 2023 -0400

Bump commons-parent but skip Moditect
---
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 623d3ff5..e8857b6a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.commons
 commons-parent
-58
+64
 
 
 commons-rdf-parent
@@ -72,6 +72,7 @@
 1.7.26
 4.13.2
 false
+true
 
 
 



[commons-pool] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-pool.git


The following commit(s) were added to refs/heads/master by this push:
 new 5cef85da Bump commons-parent
5cef85da is described below

commit 5cef85dad7ec9fb6404a5686ba125769cebe666b
Author: Gary Gregory 
AuthorDate: Tue Oct 10 11:54:48 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8e66ce34..fe870aee 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   commons-pool3
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index dbca3173..c2fa8a46 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -55,7 +55,7 @@ The  type attribute can be add,update,fix,remove.
   Bump Java from 8 to 17.
 
 
-  Bump commons-parent from 58 to 62.
+  Bump commons-parent from 58 to 64.
 
 
   Bump org.ow2.asm:asm-util from 9.5 to 9.6 #252.



[commons-pool] branch POOL_2_X updated: Bump commons-parent

2023-10-10 Thread ggregory
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch POOL_2_X
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/POOL_2_X by this push:
 new 05f60403 Bump commons-parent
05f60403 is described below

commit 05f6040305c121423a14f77cf569bb1988f53285
Author: Gary Gregory 
AuthorDate: Tue Oct 10 12:13:11 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 6 ++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 02ca8225..6551720d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
 
   commons-pool2
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index aef20925..75ed926d 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -46,6 +46,12 @@ The  type attribute can be add,update,fix,remove.
   
   
   
+
+
+
+
+  Bump commons-parent from 62 to 64.
+
   
   
 



[commons-net] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-net.git


The following commit(s) were added to refs/heads/master by this push:
 new f514c6e9 Bump commons-parent
f514c6e9 is described below

commit f514c6e9f9bdb2defe63dc7ba407d7d0b950a2b9
Author: Gary Gregory 
AuthorDate: Tue Oct 10 12:18:12 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 7a666b78..8b413f00 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
 
 org.apache.commons
 commons-parent
-62
+64
 
 
 commons-net
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index f369d287..475ae418 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -68,6 +68,9 @@ The  type attribute can be add,update,fix,remove.
   
   
   
+  
+Bump commons-parent from 62 to 64.
+  
 
 
   



[commons-logging] branch master updated (75a09ea -> e0ca622)

2023-10-10 Thread ggregory
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-logging.git


from 75a09ea  fixed project name
 new 42ad2ae  Fix Javadoc warnings and errors
 new e0ca622  Bump commons-parent

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 +-
 .../org/apache/commons/logging/LogFactory.java | 171 +
 .../java/org/apache/commons/logging/LogSource.java |  52 +--
 .../logging/impl/Jdk13LumberjackLogger.java|  12 ++
 .../apache/commons/logging/impl/Jdk14Logger.java   |  24 +--
 .../apache/commons/logging/impl/Log4JLogger.java   |  25 +--
 .../commons/logging/impl/LogFactoryImpl.java   | 104 ++---
 .../apache/commons/logging/impl/LogKitLogger.java  |   4 +-
 .../org/apache/commons/logging/impl/NoOpLog.java   |  88 ---
 .../org/apache/commons/logging/impl/SimpleLog.java |   5 +-
 .../apache/commons/logging/impl/WeakHashtable.java |   5 +-
 11 files changed, 279 insertions(+), 213 deletions(-)



[commons-logging] 01/02: Fix Javadoc warnings and errors

2023-10-10 Thread ggregory
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-logging.git

commit 42ad2ae0b60a29dd7435f5bfed885b359f93c30b
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:22:39 2023 -0400

Fix Javadoc warnings and errors
---
 .../org/apache/commons/logging/LogFactory.java | 171 +
 .../java/org/apache/commons/logging/LogSource.java |  52 +--
 .../logging/impl/Jdk13LumberjackLogger.java|  12 ++
 .../apache/commons/logging/impl/Jdk14Logger.java   |  24 +--
 .../apache/commons/logging/impl/Log4JLogger.java   |  25 +--
 .../commons/logging/impl/LogFactoryImpl.java   | 104 ++---
 .../apache/commons/logging/impl/LogKitLogger.java  |   4 +-
 .../org/apache/commons/logging/impl/NoOpLog.java   |  88 ---
 .../org/apache/commons/logging/impl/SimpleLog.java |   5 +-
 .../apache/commons/logging/impl/WeakHashtable.java |   5 +-
 10 files changed, 278 insertions(+), 212 deletions(-)

diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java 
b/src/main/java/org/apache/commons/logging/LogFactory.java
index 8f1c9ff..150f689 100644
--- a/src/main/java/org/apache/commons/logging/LogFactory.java
+++ b/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -204,42 +204,37 @@ public abstract class LogFactory {
  * or {@code null} if there is no such attribute.
  *
  * @param name Name of the attribute to return
+ * @return the configuration attribute with the specified name.
  */
 public abstract Object getAttribute(String name);
 
 /**
- * Return an array containing the names of all currently defined
- * configuration attributes.  If there are no such attributes, a zero
- * length array is returned.
+ * Gets an array containing the names of all currently defined 
configuration attributes. If there are no such attributes, a zero length array 
is returned.
+ *
+ * @return an array containing the names of all currently defined 
configuration attributes
  */
 public abstract String[] getAttributeNames();
 
 /**
- * Convenience method to derive a name from the specified class and
- * call {@code getInstance(String)} with it.
+ * Convenience method to derive a name from the specified class and call 
{@code getInstance(String)} with it.
  *
  * @param clazz Class for which a suitable Log name will be derived
- * @throws LogConfigurationException if a suitable {@code Log}
- *  instance cannot be returned
+ * @return a name from the specified class.
+ * @throws LogConfigurationException if a suitable {@code Log} instance 
cannot be returned
  */
-public abstract Log getInstance(Class clazz)
-throws LogConfigurationException;
+public abstract Log getInstance(Class clazz) throws 
LogConfigurationException;
 
 /**
- * Construct (if necessary) and return a {@code Log} instance,
- * using the factory's current set of configuration attributes.
+ * Construct (if necessary) and return a {@code Log} instance, using the 
factory's current set of configuration attributes.
  * 
- * NOTE - Depending upon the implementation of
- * the {@code LogFactory} you are using, the {@code Log}
- * instance you are returned may or may not be local to the current
- * application, and may or may not be returned again on a subsequent
- * call with the same name argument.
+ * NOTE - Depending upon the implementation of the {@code 
LogFactory} you are using, the {@code Log} instance you are returned may or may
+ * not be local to the current application, and may or may not be returned 
again on a subsequent call with the same name argument.
+ * 
  *
- * @param name Logical name of the {@code Log} instance to be
- *  returned (the meaning of this name is only known to the underlying
- *  logging implementation that is being wrapped)
- * @throws LogConfigurationException if a suitable {@code Log}
- *  instance cannot be returned
+ * @param name Logical name of the {@code Log} instance to be returned 
(the meaning of this name is only known to the underlying logging 
implementation that
+ * is being wrapped)
+ * @return a {@code Log} instance.
+ * @throws LogConfigurationException if a suitable {@code Log} instance 
cannot be returned
  */
 public abstract Log getInstance(String name)
 throws LogConfigurationException;
@@ -385,34 +380,26 @@ public abstract class LogFactory {
 }
 
 /**
- * Construct (if necessary) and return a {@code LogFactory}
- * instance, using the following ordered lookup procedure to determine
- * the name of the implementation class to be loaded.
- * 
+ * Construct (if necessary) and return a {@code LogFactory} instance, 
using the following ordered lookup procedure to determine the name of the
+ * 

[commons-logging] 02/02: Bump commons-parent

2023-10-10 Thread ggregory
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-logging.git

commit e0ca622ebddc3d2b969d9afef7941b6ba11c91b7
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:23:26 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 0e8ab61..12444d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@ under the License.
 org.apache.commons
 commons-parent
 
-59
+64
   
   4.0.0
   commons-logging



[commons-skin] branch master updated: Bump commons-parent

2023-10-10 Thread ggregory
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-skin.git


The following commit(s) were added to refs/heads/master by this push:
 new d46e693  Bump commons-parent
d46e693 is described below

commit d46e6933c99d43922faee3438edd99b56e7d866c
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:28:35 2023 -0400

Bump commons-parent
---
 pom.xml | 3 ++-
 src/changes/changes.xml | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index b702908..59a3078 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-58
+64
   
   commons-skin
   4.3-SNAPSHOT
@@ -45,6 +45,7 @@
 RC1
 
 
+true
   
 
   
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0c29bb1..7fb249e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -70,7 +70,7 @@ The  type attribute can be add,update,fix,remove.
 Bump actions/upload-artifact from 3.1.0 to 3.1.1 #18.
 Bump 
github/codeql-action from 2.1.23 to 2.1.31 #4, #17, #19.
 Bump 
ossf/scorecard-action from 1.1.2 to 2.0.6 #15.
-Bump commons-parent from 49 to 58, #5, #28, #32, #59.
+Bump commons-parent from 49 to 64, #5, #28, #32, #59.
   
 
   

[commons-jxpath] branch master updated (9263825 -> 12fd602)

2023-10-10 Thread ggregory
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-jxpath.git


from 9263825  Use Checkstyle to validate import order
 new dc4762a  Fix Javadoc warnings
 new 12fd602  Bump commons-parent

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   | 4 ++--
 src/changes/changes.xml   | 2 +-
 src/main/java/org/apache/commons/jxpath/PackageFunctions.java | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)



[commons-jxpath] 01/02: Fix Javadoc warnings

2023-10-10 Thread ggregory
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-jxpath.git

commit dc4762a0a9a0b0fd4bfe43fc0d000adc64df8639
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:40:19 2023 -0400

Fix Javadoc warnings
---
 src/main/java/org/apache/commons/jxpath/PackageFunctions.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/jxpath/PackageFunctions.java 
b/src/main/java/org/apache/commons/jxpath/PackageFunctions.java
index 3a2e4a1..f4458fa 100644
--- a/src/main/java/org/apache/commons/jxpath/PackageFunctions.java
+++ b/src/main/java/org/apache/commons/jxpath/PackageFunctions.java
@@ -93,7 +93,7 @@ public class PackageFunctions implements Functions {
 /**
  * Returns a {@link Function}, if found, for the specified namespace,
  * name and parameter types.
- * 
+ *
  * @param  namespace - if it is not the same as specified in the
  * construction, this method returns null
  * @param name - name of the method, which can one these forms:



[commons-jxpath] 02/02: Bump commons-parent

2023-10-10 Thread ggregory
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-jxpath.git

commit 12fd6020ebbabbd131d6371895c203b4501bf5c0
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:40:57 2023 -0400

Bump commons-parent
---
 pom.xml | 4 ++--
 src/changes/changes.xml | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 519185f..d3b7e0e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
   
 org.apache.commons
 commons-parent
-58
+64
   
   4.0.0
   commons-jxpath
@@ -211,7 +211,7 @@
 
   jdom
   jdom
-  1.0
+  1.1
   true
 
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index eeaa238..5b0fd1e 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -125,7 +125,7 @@ The  type attribute can be add,update,fix,remove.
 Bump servlet-api from 2.4 to 2.5 #29.
   
   
-Bump commons-parent from 54 to 58 #45, #49, #64.
+Bump commons-parent from 54 to 64 #45, #49, #64.
   
 
   



[commons-jexl] branch master updated (a90773dc -> d87383be)

2023-10-10 Thread ggregory
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-jexl.git


from a90773dc Fix Javadoc empty tag warning
 new 1e752c28 Bump commons-parent
 new 772b2624 Fix Javadoc warnings like
 new d87383be Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jexl.git

The 3 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/main/java/org/apache/commons/jexl3/JexlFeatures.java | 1 +
 1 file changed, 1 insertion(+)



[commons-jexl] 01/03: Bump commons-parent

2023-10-10 Thread ggregory
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-jexl.git

commit 1e752c28eb2de16352a829d8af67c6ba7cb7193e
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:34:42 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 930be306..0d69a4ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
 
 org.apache.commons
 commons-parent
-62
+64
 
 
 commons-jexl3
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index a7b40cfd..cc168002 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -56,7 +56,7 @@
 Bump github actions.
 
 
-Bump commons-parent from 57 to 62.
+Bump commons-parent from 57 to 64.
 
 
 Bump org.ow2.asm:asm from 9.5 to 9.6 #200.



[commons-jexl] 02/03: Fix Javadoc warnings like

2023-10-10 Thread ggregory
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-jexl.git

commit 772b26246c3bdaf8902792c206d58099868a8655
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:41:28 2023 -0400

Fix Javadoc warnings like

commons-jexl\src\main\java\org\apache\commons\jexl3\JexlFeatures.java:583:
warning: empty  tag
---
 .../java/org/apache/commons/jexl3/JexlFeatures.java | 21 -
 1 file changed, 20 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java 
b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
index 163807e9..7f5b4ea4 100644
--- a/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
+++ b/src/main/java/org/apache/commons/jexl3/JexlFeatures.java
@@ -271,8 +271,10 @@ public final class JexlFeatures {
  * Sets whether register are enabled.
  * 
  * This is mostly used internally during execution of 
JexlEngine.{g,s}etProperty.
+ * 
  * 
  * When disabled, parsing a script/expression using the register syntax 
will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -293,6 +295,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using a local variable or 
parameter syntax
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -313,6 +316,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactical constructs 
modifying variables
  * including all potentially ant-ish variables will throw a 
parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -333,6 +337,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactical constructs 
modifying variables
  * or members will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -353,6 +358,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using 'obj[ ref ]' where ref 
is not a string or integer literal
  * will throw a parsing exception;
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -373,6 +379,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using 'obj.method()'
  * will throw a parsing exception;
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -393,6 +400,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression creating one of these 
literals
  * will throw a parsing exception;
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -413,6 +421,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using 'new(...)' will throw 
a parsing exception;
  * using a class as functor will fail at runtime.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -433,6 +442,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic looping 
constructs (for,while)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -473,6 +483,7 @@ public final class JexlFeatures {
  * 
  * When disabled, lambda-captured variables are implicitly converted to 
read-write local variable (let),
  * when enabled, those are implicitly converted to read-only local 
variables (const).
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  */
@@ -493,6 +504,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic thin-arrow 
(-<)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  * @since 3.3
@@ -515,6 +527,7 @@ public final class JexlFeatures {
  * 
  * When disabled, parsing a script/expression using syntactic fat-arrow 
(=<)
  * will throw a parsing exception.
+ * 
  * @param flag true to enable, false to disable
  * @return this features instance
  * @since 3.3
@@ -537,6 +550,7 @@ public final class JexlFeatures {
  * 
  * When disabled, comparison operators names (eq;ne;le;lt;ge;gt)
  * will be treated as plain identifiers.
+ 

[commons-jexl] 03/03: Merge branch 'master' of https://gitbox.apache.org/repos/asf/commons-jexl.git

2023-10-10 Thread ggregory
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-jexl.git

commit d87383be66ff62b05eed53a319ddd08e29dd483f
Merge: 772b2624 a90773dc
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:42:21 2023 -0400

Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jexl.git

 src/main/java/org/apache/commons/jexl3/JexlFeatures.java | 1 +
 1 file changed, 1 insertion(+)




[commons-jxpath] 01/02: Document bump jdom:jdom from 1.0 to 1.1

2023-10-10 Thread ggregory
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-jxpath.git

commit 0d078f865afe8257db80bddf0cefbc6d55436668
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:45:16 2023 -0400

Document bump jdom:jdom from 1.0 to 1.1
---
 src/changes/changes.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 5b0fd1e..7ae4b81 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -127,6 +127,9 @@ The  type attribute can be add,update,fix,remove.
   
 Bump commons-parent from 54 to 64 #45, #49, #64.
   
+  
+Bump jdom:jdom from 1.0 to 1.1.
+  
 
   
 



[commons-jxpath] 02/02: Bump commons-parent

2023-10-10 Thread ggregory
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-jxpath.git

commit c3f9688342a49f0d847c5f047d99fc792e6fcaae
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:46:50 2023 -0400

Bump commons-parent
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index d3b7e0e..2b1a594 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,6 +99,7 @@
 12310480
 
 *;resolution:=optional
+true

 
   



[commons-jxpath] branch master updated (12fd602 -> c3f9688)

2023-10-10 Thread ggregory
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-jxpath.git


from 12fd602  Bump commons-parent
 new 0d078f8  Document bump jdom:jdom from 1.0 to 1.1
 new c3f9688  Bump commons-parent

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 | 1 +
 src/changes/changes.xml | 3 +++
 2 files changed, 4 insertions(+)



[commons-jxpath] branch master updated: Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.

2023-10-10 Thread ggregory
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-jxpath.git


The following commit(s) were added to refs/heads/master by this push:
 new 50c2ece  Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.
50c2ece is described below

commit 50c2ecebde406819921b61e50f9fa72192e57736
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:51:31 2023 -0400

Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2b1a594..436cb94 100644
--- a/pom.xml
+++ b/pom.xml
@@ -210,7 +210,7 @@
   test
 
 
-  jdom
+  org.jdom
   jdom
   1.1
   true
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 7ae4b81..39b7cd3 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -128,7 +128,7 @@ The  type attribute can be add,update,fix,remove.
 Bump commons-parent from 54 to 64 #45, #49, #64.
   
   
-Bump jdom:jdom from 1.0 to 1.1.
+Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.
   
 
   



[commons-jxpath] branch master updated: Bump org.jdom:jdom from 1.1 to 1.1.3

2023-10-10 Thread ggregory
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-jxpath.git


The following commit(s) were added to refs/heads/master by this push:
 new a19f045  Bump org.jdom:jdom from 1.1 to 1.1.3
a19f045 is described below

commit a19f0455f0cfa7fabcfe1086c5ac5e4dba1ef830
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:53:26 2023 -0400

Bump org.jdom:jdom from 1.1 to 1.1.3
---
 pom.xml | 2 +-
 src/changes/changes.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 436cb94..8dd26fc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -212,7 +212,7 @@
 
   org.jdom
   jdom
-  1.1
+  1.1.3
   true
 
 
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 39b7cd3..81b5c3a 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -128,7 +128,7 @@ The  type attribute can be add,update,fix,remove.
 Bump commons-parent from 54 to 64 #45, #49, #64.
   
   
-Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.
+Bump JDOM from jdom:jdom 1.0 to org.jdom:jdom 1.1.3.
   
 
   



[commons-lang] branch master updated: Fix Checkstyle

2023-10-10 Thread ggregory
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-lang.git


The following commit(s) were added to refs/heads/master by this push:
 new d4ebf9abc Fix Checkstyle
d4ebf9abc is described below

commit d4ebf9abcccdb0347a94172e1da97aa692e20336
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:39:05 2023 -0400

Fix Checkstyle

[INFO] There are 4 errors reported by Checkstyle 10.12.4 with
src/site/resources/checkstyle/checkstyle.xml ruleset.
[ERROR] src\main\java\org\apache\commons\lang3\StringUtils.java:[1869,92]
(whitespace) WhitespaceAfter: '...' is not followed by whitespace.
[ERROR] 
src\main\java\org\apache\commons\lang3\time\FastDatePrinter.java:[1454,13]
(whitespace) WhitespaceAfter: 'switch' is not followed by whitespace.
[ERROR] 
src\test\java\org\apache\commons\lang3\time\FastDateFormatTest.java:[285,17]
(whitespace) WhitespaceAfter: 'synchronized' is not followed by
whitespace.
[ERROR] 
src\test\java\org\apache\commons\lang3\time\FastDateFormatTest.java:[292,17]
(whitespace) WhitespaceAfter: 'synchronized' is not followed by
whitespace.
---
 src/changes/changes.xml | 2 +-
 src/main/java/org/apache/commons/lang3/StringUtils.java | 2 +-
 src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java| 2 +-
 src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java | 4 ++--
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 2e5cf9082..83bbc1799 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -70,7 +70,7 @@ The  type attribute can be add,update,fix,remove.
 Add LocaleUtils.isLanguageUndetermined(Locale).
 Add Add ObjectUtils.toString(Supplier, 
Supplier).
 
-Bump commons-parent from 58 to 62.
+Bump commons-parent from 58 to 64.
 Bump org.easymock:easymock from 5.1.0 to 5.2.0 #1104.
   
   
diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java 
b/src/main/java/org/apache/commons/lang3/StringUtils.java
index fbf10227a..7d924eb5e 100644
--- a/src/main/java/org/apache/commons/lang3/StringUtils.java
+++ b/src/main/java/org/apache/commons/lang3/StringUtils.java
@@ -1866,7 +1866,7 @@ public class StringUtils {
  * {@code false} if {@code searchStrings} is null or contains no matches.
  * @since 3.5
  */
-public static boolean equalsAnyIgnoreCase(final CharSequence string, final 
CharSequence...searchStrings) {
+public static boolean equalsAnyIgnoreCase(final CharSequence string, final 
CharSequence... searchStrings) {
 if (ArrayUtils.isNotEmpty(searchStrings)) {
 for (final CharSequence next : searchStrings) {
 if (equalsIgnoreCase(string, next)) {
diff --git a/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java 
b/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java
index 11ea08ac6..bcb112ce8 100644
--- a/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java
+++ b/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java
@@ -1451,7 +1451,7 @@ public class FastDatePrinter implements DatePrinter, 
Serializable {
  *  rule exists, an IllegalArgumentException will be thrown.
  */
 static Iso8601_Rule getRule(final int tokenLen) {
-switch(tokenLen) {
+switch (tokenLen) {
 case 1:
 return ISO8601_HOURS;
 case 2:
diff --git 
a/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java 
b/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java
index dda25cb47..8350c42d3 100644
--- a/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java
+++ b/src/test/java/org/apache/commons/lang3/time/FastDateFormatTest.java
@@ -282,14 +282,14 @@ public class FastDateFormatTest extends AbstractLangTest {
 public StringBuffer format(final Object obj,
 final StringBuffer toAppendTo,
 final FieldPosition fieldPosition) {
-synchronized(this) {
+synchronized (this) {
 return inner.format(obj, toAppendTo, fieldPosition);
 }
 }
 
 @Override
 public Object parseObject(final String source, final ParsePosition 
pos) {
-synchronized(this) {
+synchronized (this) {
 return inner.parseObject(source, pos);
 }
 }




[commons-bcel] branch master updated: Make private static classes final

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-bcel.git


The following commit(s) were added to refs/heads/master by this push:
 new a2ecaa22 Make private static classes final
a2ecaa22 is described below

commit a2ecaa221debaf123689bca4968f030080940ca2
Author: Gary David Gregory (Code signing key) 
AuthorDate: Tue Oct 10 15:59:52 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/bcel/classfile/ConstantUtf8.java  |  2 +-
 src/main/java/org/apache/bcel/classfile/Utility.java   |  4 ++--
 src/main/java/org/apache/bcel/generic/InstructionFactory.java  |  2 +-
 src/main/java/org/apache/bcel/util/ClassPath.java  | 10 +-
 .../java/org/apache/bcel/verifier/statics/Pass2Verifier.java   |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java 
b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java
index e8570595..51a843c8 100644
--- a/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java
+++ b/src/main/java/org/apache/bcel/classfile/ConstantUtf8.java
@@ -57,7 +57,7 @@ import org.apache.bcel.Const;
  */
 public final class ConstantUtf8 extends Constant {
 
-private static class Cache {
+private static final class Cache {
 
 private static final boolean BCEL_STATISTICS = 
Boolean.getBoolean(SYS_PROP_STATISTICS);
 private static final int MAX_ENTRIES = 
Integer.getInteger(SYS_PROP_CACHE_MAX_ENTRIES, 0).intValue();
diff --git a/src/main/java/org/apache/bcel/classfile/Utility.java 
b/src/main/java/org/apache/bcel/classfile/Utility.java
index ccf348a5..afefef8e 100644
--- a/src/main/java/org/apache/bcel/classfile/Utility.java
+++ b/src/main/java/org/apache/bcel/classfile/Utility.java
@@ -48,7 +48,7 @@ public abstract class Utility {
 /**
  * Decode characters into bytes. Used by decode()
  */
-private static class JavaReader extends FilterReader {
+private static final class JavaReader extends FilterReader {
 
 public JavaReader(final Reader in) {
 super(in);
@@ -88,7 +88,7 @@ public abstract class Utility {
  * Encode bytes into valid java identifier characters. Used by
  * encode()
  */
-private static class JavaWriter extends FilterWriter {
+private static final class JavaWriter extends FilterWriter {
 
 public JavaWriter(final Writer out) {
 super(out);
diff --git a/src/main/java/org/apache/bcel/generic/InstructionFactory.java 
b/src/main/java/org/apache/bcel/generic/InstructionFactory.java
index 7f29f821..2f1f9132 100644
--- a/src/main/java/org/apache/bcel/generic/InstructionFactory.java
+++ b/src/main/java/org/apache/bcel/generic/InstructionFactory.java
@@ -30,7 +30,7 @@ import org.apache.bcel.Const;
  */
 public class InstructionFactory implements InstructionConstants {
 
-private static class MethodObject {
+private static final class MethodObject {
 
 final Type[] argTypes;
 final Type resultType;
diff --git a/src/main/java/org/apache/bcel/util/ClassPath.java 
b/src/main/java/org/apache/bcel/util/ClassPath.java
index d0061ad3..63f67a3c 100644
--- a/src/main/java/org/apache/bcel/util/ClassPath.java
+++ b/src/main/java/org/apache/bcel/util/ClassPath.java
@@ -172,7 +172,7 @@ public class ClassPath implements Closeable {
 long getTime();
 }
 
-private static class Dir extends AbstractPathEntry {
+private static final class Dir extends AbstractPathEntry {
 
 private final String dir;
 
@@ -254,7 +254,7 @@ public class ClassPath implements Closeable {
 }
 }
 
-private static class Jar extends AbstractZip {
+private static final class Jar extends AbstractZip {
 
 Jar(final ZipFile zip) {
 super(zip);
@@ -267,7 +267,7 @@ public class ClassPath implements Closeable {
 
 }
 
-private static class JrtModule extends AbstractPathEntry {
+private static final class JrtModule extends AbstractPathEntry {
 
 private final Path modulePath;
 
@@ -350,7 +350,7 @@ public class ClassPath implements Closeable {
 
 }
 
-private static class JrtModules extends AbstractPathEntry {
+private static final class JrtModules extends AbstractPathEntry {
 
 private final ModularRuntimeImage modularRuntimeImage;
 private final JrtModule[] modules;
@@ -416,7 +416,7 @@ public class ClassPath implements Closeable {
 
 }
 
-private static class Module extends AbstractZip {
+private static final class Module extends AbstractZip {
 
 Module(final ZipFile zip) {
 super(zip);
diff --git a/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java 
b/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier.java
index d9df124c..810630eb 100644
--- a/src/main/java/org/apache/bcel/verifier/statics/Pass2Verifier

[commons-jxpath] branch master updated: Enable module-info generation

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-jxpath.git


The following commit(s) were added to refs/heads/master by this push:
 new 6c76285  Enable module-info generation
6c76285 is described below

commit 6c7628566bb610e4048da939376f7753c1d0302d
Author: Gary Gregory 
AuthorDate: Tue Oct 10 15:58:58 2023 -0400

Enable module-info generation
---
 pom.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 8dd26fc..9646a49 100644
--- a/pom.xml
+++ b/pom.xml
@@ -99,7 +99,6 @@
 12310480
 
 *;resolution:=optional
-true

 
   



[commons-cli] branch master updated: Make private static classes final

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-cli.git


The following commit(s) were added to refs/heads/master by this push:
 new 4deafd4  Make private static classes final
4deafd4 is described below

commit 4deafd435aa062fccf3a8e4cf26efa9c9ad5fac2
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:04:22 2023 -0400

Make private static classes final
---
 src/test/java/org/apache/commons/cli/OptionTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/cli/OptionTest.java 
b/src/test/java/org/apache/commons/cli/OptionTest.java
index 6650357..7cc84f8 100644
--- a/src/test/java/org/apache/commons/cli/OptionTest.java
+++ b/src/test/java/org/apache/commons/cli/OptionTest.java
@@ -29,7 +29,7 @@ import org.junit.Test;
 
 public class OptionTest {
 
-private static class DefaultOption extends Option {
+private static final class DefaultOption extends Option {
 private static final long serialVersionUID = 1L;
 
 private final String defaultValue;
@@ -45,7 +45,7 @@ public class OptionTest {
 }
 }
 
-private static class TestOption extends Option {
+private static final class TestOption extends Option {
 private static final long serialVersionUID = 1L;
 
 TestOption(final String opt, final boolean hasArg, final String 
description) throws IllegalArgumentException {



[commons-beanutils] branch master updated: Make private static classes final

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-beanutils.git


The following commit(s) were added to refs/heads/master by this push:
 new ebeca98e Make private static classes final
ebeca98e is described below

commit ebeca98ea313cd510059f68ef90a20e739237ad7
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:03:33 2023 -0400

Make private static classes final
---
 .../java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java| 2 +-
 src/main/java/org/apache/commons/beanutils2/BeanComparator.java | 2 +-
 .../java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java| 2 +-
 src/main/java/org/apache/commons/beanutils2/MethodUtils.java| 2 +-
 src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java  | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java 
b/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
index 69e9f548..613261c0 100644
--- a/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
+++ b/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
@@ -52,7 +52,7 @@ public abstract class BaseDynaBeanMapDecorator implements 
Map {
 /**
  * Map.Entry implementation.
  */
-private static class MapEntry implements Map.Entry {
+private static final class MapEntry implements Map.Entry {
 
 private final K key;
 private final Object value;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanComparator.java 
b/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
index ce628f98..2c114cbe 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
@@ -53,7 +53,7 @@ public class BeanComparator implements Comparator, 
Serializable {
  * @param  the type of objects compared by this comparator
  * @see java.util.Collections#reverseOrder()
  */
-private static class NaturalOrderComparator>
+private static final class NaturalOrderComparator>
 implements Comparator, Serializable {
 
 /** Serialization version. */
diff --git 
a/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java 
b/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
index 8da407ad..c907cc45 100644
--- a/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
+++ b/src/main/java/org/apache/commons/beanutils2/MappedPropertyDescriptor.java
@@ -51,7 +51,7 @@ public class MappedPropertyDescriptor extends 
PropertyDescriptor {
  *
  * See https://issues.apache.org/jira/browse/BEANUTILS-291
  */
-private static class MappedMethodReference {
+private static final class MappedMethodReference {
 private String className;
 private String methodName;
 private Reference methodRef;
diff --git a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java 
b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
index 03f84b4b..ec3b435f 100644
--- a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
@@ -49,7 +49,7 @@ public class MethodUtils {
 /**
  * Represents the key to looking up a Method by reflection.
  */
-private static class MethodDescriptor {
+private static final class MethodDescriptor {
 private final Class cls;
 private final String methodName;
 private final Class[] paramTypes;
diff --git a/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java 
b/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java
index 6e3c0b66..08dd7fae 100644
--- a/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java
@@ -48,7 +48,7 @@ public class WrapDynaClass implements DynaClass {
  * instances. A single key consists of a bean class and an instance of
  * {@code PropertyUtilsBean}. Instances are immutable.
  */
-private static class CacheKey {
+private static final class CacheKey {
 
 /** The bean class. */
 private final Class beanClass;



[commons-codec] branch master updated: Make private static classes final

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-codec.git


The following commit(s) were added to refs/heads/master by this push:
 new 45659e4e Make private static classes final
45659e4e is described below

commit 45659e4ee91bc42716a8452e36e4026f699d6b91
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:07:05 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/commons/codec/digest/Blake3.java   | 6 +++---
 src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java   | 2 +-
 .../java/org/apache/commons/codec/digest/PureJavaCrc32Test.java | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/digest/Blake3.java 
b/src/main/java/org/apache/commons/codec/digest/Blake3.java
index 72c8b302..e941c5bf 100644
--- a/src/main/java/org/apache/commons/codec/digest/Blake3.java
+++ b/src/main/java/org/apache/commons/codec/digest/Blake3.java
@@ -365,7 +365,7 @@ public final class Blake3 {
  * Represents the state just prior to either producing an eight word 
chaining value or any number of output bytes
  * when the ROOT flag is set.
  */
-private static class Output {
+private static final class Output {
 private final int[] inputChainingValue;
 private final int[] blockWords;
 private final long counter;
@@ -405,7 +405,7 @@ public final class Blake3 {
 }
 }
 
-private static class ChunkState {
+private static final class ChunkState {
 private int[] chainingValue;
 private final long chunkCounter;
 private final int flags;
@@ -458,7 +458,7 @@ public final class Blake3 {
 }
 }
 
-private static class EngineState {
+private static final class EngineState {
 private final int[] key;
 private final int flags;
 // Space for 54 subtree chaining values: 2^54 * CHUNK_LEN = 2^64
diff --git a/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java 
b/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java
index 7f6ed1f3..829bdd12 100644
--- a/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java
+++ b/src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java
@@ -379,7 +379,7 @@ public class BaseNCodecTest {
  * Extend BaseNCodec without implementation (no operations = NoOp).
  * Used for testing the memory allocation in {@link 
BaseNCodec#ensureBufferSize(int, Context)}.
  */
-private static class NoOpBaseNCodec extends BaseNCodec {
+private static final class NoOpBaseNCodec extends BaseNCodec {
 NoOpBaseNCodec() {
 super(0, 0, 0, 0);
 }
diff --git 
a/src/test/java/org/apache/commons/codec/digest/PureJavaCrc32Test.java 
b/src/test/java/org/apache/commons/codec/digest/PureJavaCrc32Test.java
index 64765271..52466ff6 100644
--- a/src/test/java/org/apache/commons/codec/digest/PureJavaCrc32Test.java
+++ b/src/test/java/org/apache/commons/codec/digest/PureJavaCrc32Test.java
@@ -362,7 +362,7 @@ public class PureJavaCrc32Test {
   return new BenchResult(expected, sum/results.length);
 }
 
-private static class BenchResult {
+private static final class BenchResult {
   /** CRC value */
   final long value;
   /** Speed (MB per second) */



[commons-collections] branch master updated: Make private static classes final

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-collections.git


The following commit(s) were added to refs/heads/master by this push:
 new bb99f201b Make private static classes final
bb99f201b is described below

commit bb99f201b174a64a0eaeb3a5b115ac8a1a2e38d1
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:14:05 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/commons/collections4/CollectionUtils.java| 4 ++--
 src/main/java/org/apache/commons/collections4/ListUtils.java  | 2 +-
 src/main/java/org/apache/commons/collections4/SplitMapUtils.java  | 4 ++--
 src/main/java/org/apache/commons/collections4/map/MultiValueMap.java  | 2 +-
 .../org/apache/commons/collections4/multiset/AbstractMapMultiSet.java | 2 +-
 .../org/apache/commons/collections4/multiset/AbstractMultiSet.java| 2 +-
 .../org/apache/commons/collections4/properties/PropertiesFactory.java | 2 +-
 .../org/apache/commons/collections4/sequence/SequencesComparator.java | 2 +-
 .../org/apache/commons/collections4/trie/AbstractPatriciaTrie.java| 2 +-
 src/test/java/org/apache/commons/collections4/MapPerformance.java | 2 +-
 .../org/apache/commons/collections4/bidimap/DualTreeBidiMap2Test.java | 2 +-
 .../collections4/bloomfilter/IndexProducerFromBitmapProducerTest.java | 2 +-
 .../apache/commons/collections4/bloomfilter/IndexProducerTest.java| 2 +-
 .../collections4/collection/PredicatedCollectionBuilderTest.java  | 2 +-
 .../commons/collections4/collection/TransformedCollectionTest.java| 4 ++--
 .../apache/commons/collections4/functors/ComparatorPredicateTest.java | 2 +-
 .../java/org/apache/commons/collections4/map/LazySortedMapTest.java   | 2 +-
 .../org/apache/commons/collections4/map/PassiveExpiringMapTest.java   | 2 +-
 .../java/org/apache/commons/collections4/map/ReferenceMapTest.java| 2 +-
 .../apache/commons/collections4/sequence/SequencesComparatorTest.java | 2 +-
 20 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/main/java/org/apache/commons/collections4/CollectionUtils.java 
b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
index 28b5f3a67..caf178164 100644
--- a/src/main/java/org/apache/commons/collections4/CollectionUtils.java
+++ b/src/main/java/org/apache/commons/collections4/CollectionUtils.java
@@ -161,7 +161,7 @@ public class CollectionUtils {
  * Helper class for set-related operations, e.g. union, subtract, 
intersection.
  * @param   the element type
  */
-private static class SetOperationCardinalityHelper extends 
CardinalityHelper implements Iterable {
+private static final class SetOperationCardinalityHelper extends 
CardinalityHelper implements Iterable {
 
 /** Contains the unique elements of the two collections. */
 private final Set elements;
@@ -712,7 +712,7 @@ public class CollectionUtils {
  * @param   the element type
  * @since 4.0
  */
-private static class EquatorWrapper {
+private static final class EquatorWrapper {
 private final Equator equator;
 private final O object;
 
diff --git a/src/main/java/org/apache/commons/collections4/ListUtils.java 
b/src/main/java/org/apache/commons/collections4/ListUtils.java
index 4dccc16a7..054c070a2 100644
--- a/src/main/java/org/apache/commons/collections4/ListUtils.java
+++ b/src/main/java/org/apache/commons/collections4/ListUtils.java
@@ -98,7 +98,7 @@ public class ListUtils {
  * Provides a partition view on a {@link List}.
  * @since 4.0
  */
-private static class Partition extends AbstractList> {
+private static final class Partition extends AbstractList> {
 private final List list;
 private final int size;
 
diff --git a/src/main/java/org/apache/commons/collections4/SplitMapUtils.java 
b/src/main/java/org/apache/commons/collections4/SplitMapUtils.java
index fbd1364dd..0fe2ffc04 100644
--- a/src/main/java/org/apache/commons/collections4/SplitMapUtils.java
+++ b/src/main/java/org/apache/commons/collections4/SplitMapUtils.java
@@ -44,7 +44,7 @@ public class SplitMapUtils {
 private SplitMapUtils() {}
 
 
-private static class WrappedGet implements IterableMap, 
Unmodifiable {
+private static final class WrappedGet implements IterableMap, 
Unmodifiable {
 private final Get get;
 
 private WrappedGet(final Get get) {
@@ -136,7 +136,7 @@ public class SplitMapUtils {
 }
 }
 
-private static class WrappedPut implements Map, Put {
+private static final class WrappedPut implements Map, Put {
 private final Put put;
 
 private WrappedPut(final Put put) {
diff --git 
a/src/main/java/org/apache/commons/collections4/map/MultiValueMap.java 
b/src/main/java/org/apache/commons/collections4/map/MultiValueMap.java
index 796f1b39b..ed2474ae8 100644
--- a/src/main/java/org/apache/commons/

[commons-compress] branch master updated: Make private static classes final

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-compress.git


The following commit(s) were added to refs/heads/master by this push:
 new e15014b1 Make private static classes final
e15014b1 is described below

commit e15014b1ddbcf1ce30e89a530f11857c37708144
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:21:44 2023 -0400

Make private static classes final
---
 .../org/apache/commons/compress/archivers/sevenz/SevenZFile.java| 2 +-
 .../commons/compress/archivers/zip/ScatterZipOutputStream.java  | 2 +-
 .../java/org/apache/commons/compress/archivers/zip/ZipFile.java | 4 ++--
 .../compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java | 2 +-
 .../org/apache/commons/compress/changes/ChangeSetPerformer.java | 4 ++--
 .../commons/compress/compressors/deflate64/HuffmanDecoder.java  | 6 +++---
 .../org/apache/commons/compress/harmony/pack200/ClassBands.java | 2 +-
 .../org/apache/commons/compress/harmony/pack200/PackingUtils.java   | 2 +-
 .../org/apache/commons/compress/harmony/pack200/SegmentHeader.java  | 2 +-
 .../compress/harmony/unpack200/bytecode/InnerClassesAttribute.java  | 2 +-
 .../commons/compress/harmony/unpack200/bytecode/NewAttribute.java   | 6 +++---
 .../apache/commons/compress/utils/FixedLengthBlockOutputStream.java | 2 +-
 .../commons/compress/archivers/sevenz/SevenZNativeHeapTest.java | 4 ++--
 src/test/java/org/apache/commons/compress/archivers/zip/Lister.java | 2 +-
 .../apache/commons/compress/compressors/bzip2/BlockSortTest.java| 2 +-
 .../lz77support/AbstractLZ77CompressorInputStreamTest.java  | 2 +-
 .../commons/compress/harmony/unpack200/tests/SegmentUtilsTest.java  | 2 +-
 .../commons/compress/utils/FixedLengthBlockOutputStreamTest.java| 4 ++--
 .../compress/utils/MultiReadOnlySeekableByteChannelTest.java| 2 +-
 19 files changed, 27 insertions(+), 27 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java 
b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
index 6752014e..8dd12721 100644
--- a/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/sevenz/SevenZFile.java
@@ -89,7 +89,7 @@ import 
org.apache.commons.compress.utils.InputStreamStatistics;
  * @since 1.6
  */
 public class SevenZFile implements Closeable {
-private static class ArchiveStatistics {
+private static final class ArchiveStatistics {
 private int numberOfPackedStreams;
 private long numberOfCoders;
 private long numberOfOutStreams;
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/zip/ScatterZipOutputStream.java
 
b/src/main/java/org/apache/commons/compress/archivers/zip/ScatterZipOutputStream.java
index db431427..dacf6919 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/zip/ScatterZipOutputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/zip/ScatterZipOutputStream.java
@@ -50,7 +50,7 @@ import org.apache.commons.compress.utils.BoundedInputStream;
  */
 public class ScatterZipOutputStream implements Closeable {
 
-private static class CompressedEntry {
+private static final class CompressedEntry {
 final ZipArchiveEntryRequest zipArchiveEntryRequest;
 final long crc;
 final long compressedSize;
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java 
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
index 089f6959..a2496c8d 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java
@@ -106,7 +106,7 @@ public class ZipFile implements Closeable {
 /**
  * Extends ZipArchiveEntry to store the offset within the archive.
  */
-private static class Entry extends ZipArchiveEntry {
+private static final class Entry extends ZipArchiveEntry {
 
 Entry() {
 }
@@ -140,7 +140,7 @@ public class ZipFile implements Closeable {
 this.comment = comment;
 }
 }
-private static class StoredStatisticsStream extends CountingInputStream 
implements InputStreamStatistics {
+private static final class StoredStatisticsStream extends 
CountingInputStream implements InputStreamStatistics {
 StoredStatisticsStream(final InputStream in) {
 super(in);
 }
diff --git 
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java
 
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java
index 47b06e59..bad44986 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipSplitReadOnlySeekableByteChannel.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/zip

[commons-crypto] branch master updated: Make private static classes final

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-crypto.git


The following commit(s) were added to refs/heads/master by this push:
 new 9418f33  Make private static classes final
9418f33 is described below

commit 9418f33b5ca343249b0cfeece6990af5769166b5
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:26:47 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/commons/crypto/Crypto.java | 2 +-
 .../org/apache/commons/crypto/stream/PositionedCryptoInputStream.java   | 2 +-
 src/main/java/org/apache/commons/crypto/utils/Utils.java| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/crypto/Crypto.java 
b/src/main/java/org/apache/commons/crypto/Crypto.java
index aa86088..4963b55 100644
--- a/src/main/java/org/apache/commons/crypto/Crypto.java
+++ b/src/main/java/org/apache/commons/crypto/Crypto.java
@@ -34,7 +34,7 @@ import org.apache.commons.crypto.utils.AES;
  */
 public final class Crypto {
 
-private static class ComponentPropertiesHolder {
+private static final class ComponentPropertiesHolder {
 
 static final Properties PROPERTIES = getComponentProperties();
 
diff --git 
a/src/main/java/org/apache/commons/crypto/stream/PositionedCryptoInputStream.java
 
b/src/main/java/org/apache/commons/crypto/stream/PositionedCryptoInputStream.java
index 195878b..748f60f 100644
--- 
a/src/main/java/org/apache/commons/crypto/stream/PositionedCryptoInputStream.java
+++ 
b/src/main/java/org/apache/commons/crypto/stream/PositionedCryptoInputStream.java
@@ -40,7 +40,7 @@ import org.apache.commons.crypto.utils.Utils;
  */
 public class PositionedCryptoInputStream extends CtrCryptoInputStream {
 
-private static class CipherState {
+private static final class CipherState {
 
 private final CryptoCipher cryptoCipher;
 private boolean reset;
diff --git a/src/main/java/org/apache/commons/crypto/utils/Utils.java 
b/src/main/java/org/apache/commons/crypto/utils/Utils.java
index ad66346..bc400fd 100644
--- a/src/main/java/org/apache/commons/crypto/utils/Utils.java
+++ b/src/main/java/org/apache/commons/crypto/utils/Utils.java
@@ -37,7 +37,7 @@ import org.apache.commons.crypto.cipher.CryptoCipherFactory;
  */
 public final class Utils {
 
-private static class DefaultPropertiesHolder {
+private static final class DefaultPropertiesHolder {
 static final Properties DEFAULT_PROPERTIES = createDefaultProperties();
 
 /**



[commons-configuration] branch master updated: Make private static classes final

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-configuration.git


The following commit(s) were added to refs/heads/master by this push:
 new f9606cb2 Make private static classes final
f9606cb2 is described below

commit f9606cb22f4e99e938ece0a9a75b96bac340e9c8
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:33:38 2023 -0400

Make private static classes final
---
 .../apache/commons/configuration2/DynamicCombinedConfiguration.java | 2 +-
 .../java/org/apache/commons/configuration2/INIConfiguration.java| 2 +-
 .../configuration2/ImmutableConfigurationInvocationHandler.java | 2 +-
 .../configuration2/builder/BuilderConfigurationWrapperFactory.java  | 2 +-
 .../commons/configuration2/builder/DefaultParametersManager.java| 2 +-
 .../builder/combined/MultiFileConfigurationBuilderProvider.java | 2 +-
 .../apache/commons/configuration2/builder/fluent/Parameters.java| 2 +-
 .../org/apache/commons/configuration2/io/DefaultFileSystem.java | 2 +-
 .../java/org/apache/commons/configuration2/io/VFSFileSystem.java| 2 +-
 .../commons/configuration2/plist/PropertyListConfiguration.java | 6 +++---
 .../commons/configuration2/plist/XMLPropertyListConfiguration.java  | 2 +-
 .../configuration2/reloading/CombinedReloadingController.java   | 2 +-
 .../java/org/apache/commons/configuration2/tree/NodeTracker.java| 2 +-
 .../configuration2/TestAbstractConfigurationBasicFeatures.java  | 2 +-
 .../configuration2/TestAbstractHierarchicalConfiguration.java   | 2 +-
 .../commons/configuration2/TestBaseConfigurationXMLReader.java  | 2 +-
 .../TestBaseHierarchicalConfigurationSynchronization.java   | 2 +-
 .../apache/commons/configuration2/TestCombinedConfiguration.java| 6 +++---
 .../org/apache/commons/configuration2/TestConfigurationUtils.java   | 2 +-
 .../commons/configuration2/TestDefaultImmutableConfiguration.java   | 2 +-
 .../commons/configuration2/TestDynamicCombinedConfiguration.java| 2 +-
 .../org/apache/commons/configuration2/TestINIConfiguration.java | 2 +-
 .../apache/commons/configuration2/TestPropertiesConfiguration.java  | 4 ++--
 .../org/apache/commons/configuration2/TestXMLConfiguration.java | 2 +-
 .../commons/configuration2/beanutils/TestXMLBeanDeclaration.java| 2 +-
 .../configuration2/builder/TestBasicConfigurationBuilder.java   | 4 ++--
 .../configuration2/builder/TestDefaultParametersManager.java| 2 +-
 .../builder/TestReloadingFileBasedConfigurationBuilder.java | 2 +-
 .../builder/combined/TestCombinedConfigurationBuilder.java  | 4 ++--
 .../TestReloadingCombinedConfigurationBuilderFileBased.java | 4 ++--
 .../combined/TestReloadingMultiFileConfigurationBuilder.java| 2 +-
 .../apache/commons/configuration2/event/TestEventListenerList.java  | 6 +++---
 .../org/apache/commons/configuration2/event/TestEventSource.java| 2 +-
 .../java/org/apache/commons/configuration2/io/TestFileHandler.java  | 5 -
 .../configuration2/reloading/TestFileHandlerReloadingDetector.java  | 2 +-
 .../commons/configuration2/sync/TestReadWriteSynchronizer.java  | 6 +++---
 .../configuration2/tree/AbstractImmutableNodeHandlerTest.java   | 2 +-
 .../org/apache/commons/configuration2/tree/TestNodeTreeWalker.java  | 2 +-
 .../commons/configuration2/web/TestServletFilterConfiguration.java  | 2 +-
 39 files changed, 54 insertions(+), 51 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/configuration2/DynamicCombinedConfiguration.java
 
b/src/main/java/org/apache/commons/configuration2/DynamicCombinedConfiguration.java
index 38ba836e..43dd97dd 100644
--- 
a/src/main/java/org/apache/commons/configuration2/DynamicCombinedConfiguration.java
+++ 
b/src/main/java/org/apache/commons/configuration2/DynamicCombinedConfiguration.java
@@ -820,7 +820,7 @@ public class DynamicCombinedConfiguration extends 
CombinedConfiguration {
 /**
  * A simple data class holding information about the current configuration 
while an operation for a thread is processed.
  */
-private static class CurrentConfigHolder {
+private static final class CurrentConfigHolder {
 /** Stores the current configuration of the current thread. */
 private CombinedConfiguration currentConfiguration;
 
diff --git 
a/src/main/java/org/apache/commons/configuration2/INIConfiguration.java 
b/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
index b834e463..54b88dc6 100644
--- a/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
+++ b/src/main/java/org/apache/commons/configuration2/INIConfiguration.java
@@ -897,7 +897,7 @@ public class INIConfiguration extends 
BaseHierarchicalConfiguration implements F
  * This is a regular {@code TrackedNodeModel} with one exception: The 
{@code NodeHandler} used by this model applies a
  * filter on the

[commons-csv] branch master updated: Make private static classes final

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-csv.git


The following commit(s) were added to refs/heads/master by this push:
 new d9a4b2a9 Make private static classes final
d9a4b2a9 is described below

commit d9a4b2a9e9884b3b81f68bf81efee9f5dfa0363a
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:34:55 2023 -0400

Make private static classes final
---
 src/test/java/org/apache/commons/csv/CSVBenchmark.java| 2 +-
 src/test/java/org/apache/commons/csv/PerformanceTest.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/csv/CSVBenchmark.java 
b/src/test/java/org/apache/commons/csv/CSVBenchmark.java
index 64d3f498..86a345d1 100644
--- a/src/test/java/org/apache/commons/csv/CSVBenchmark.java
+++ b/src/test/java/org/apache/commons/csv/CSVBenchmark.java
@@ -202,7 +202,7 @@ public class CSVBenchmark {
 return callback.count;
 }
 
-private static class CountingReaderCallback implements 
org.skife.csv.ReaderCallback {
+private static final class CountingReaderCallback implements 
org.skife.csv.ReaderCallback {
 public int count;
 
 @Override
diff --git a/src/test/java/org/apache/commons/csv/PerformanceTest.java 
b/src/test/java/org/apache/commons/csv/PerformanceTest.java
index c0dff75e..489d7235 100644
--- a/src/test/java/org/apache/commons/csv/PerformanceTest.java
+++ b/src/test/java/org/apache/commons/csv/PerformanceTest.java
@@ -48,7 +48,7 @@ public class PerformanceTest {
 }
 
 // Container for basic statistics
-private static class Stats {
+private static final class Stats {
 final int count;
 final int fields;
 Stats(final int c, final int f) {



[commons-dbutils] branch master updated: Make private static classes final

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-dbutils.git


The following commit(s) were added to refs/heads/master by this push:
 new ad3af7d  Make private static classes final
ad3af7d is described below

commit ad3af7d2f2c186b15ca50db42bca87a539acbe8f
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:35:28 2023 -0400

Make private static classes final
---
 src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java 
b/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java
index 14a4cfb..865e111 100644
--- a/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java
+++ b/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java
@@ -30,7 +30,7 @@ import java.util.Map;
 
 public class BeanProcessorTest extends BaseTestCase {
 
-private static class IndexedPropertyTestClass {
+private static final class IndexedPropertyTestClass {
 private String name;
 // Indexed variable with indexed getter and setter
 private List things;



[commons-email] branch master updated: Make private static classes final

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-email.git


The following commit(s) were added to refs/heads/master by this push:
 new a177296  Make private static classes final
a177296 is described below

commit a1772966ab2c049fe669dc89814a304bd6d2277d
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:37:53 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/commons/mail/HtmlEmail.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/mail/HtmlEmail.java 
b/src/main/java/org/apache/commons/mail/HtmlEmail.java
index dcac143..1cfa10b 100644
--- a/src/main/java/org/apache/commons/mail/HtmlEmail.java
+++ b/src/main/java/org/apache/commons/mail/HtmlEmail.java
@@ -621,7 +621,7 @@ public class HtmlEmail extends MultiPartEmail
  * that are embedded in the final email.
  * @since 1.1
  */
-private static class InlineImage
+private static final class InlineImage
 {
 /** content id. */
 private final String cid;



[commons-dbcp] branch master updated: Make private static classes final

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-dbcp.git


The following commit(s) were added to refs/heads/master by this push:
 new 230a66d0 Make private static classes final
230a66d0 is described below

commit 230a66d032631113a13a252a021cace1aa6e9e33
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:38:16 2023 -0400

Make private static classes final
---
 .../commons/dbcp2/TestDataSourceConnectionFactory.java |  2 +-
 .../apache/commons/dbcp2/TestDelegatingStatement.java  |  2 +-
 .../dbcp2/cpdsadapter/TestDriverAdapterCPDS.java   |  2 +-
 .../dbcp2/datasources/TestInstanceKeyDataSource.java   |  2 +-
 .../dbcp2/datasources/TestSharedPoolDataSource.java| 18 +-
 .../commons/dbcp2/managed/TestLocalXaResource.java |  4 ++--
 .../commons/dbcp2/managed/TestManagedConnection.java   |  2 +-
 .../managed/TestManagedConnectionCachedState.java  |  2 +-
 .../commons/dbcp2/managed/TestTransactionContext.java  |  2 +-
 9 files changed, 18 insertions(+), 18 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/dbcp2/TestDataSourceConnectionFactory.java 
b/src/test/java/org/apache/commons/dbcp2/TestDataSourceConnectionFactory.java
index 298747b6..4f3df554 100644
--- 
a/src/test/java/org/apache/commons/dbcp2/TestDataSourceConnectionFactory.java
+++ 
b/src/test/java/org/apache/commons/dbcp2/TestDataSourceConnectionFactory.java
@@ -36,7 +36,7 @@ import org.junit.jupiter.api.Test;
  */
 public class TestDataSourceConnectionFactory {
 
-private static class TestDataSource implements DataSource {
+private static final class TestDataSource implements DataSource {
 
 @Override
 public Connection getConnection() throws SQLException {
diff --git 
a/src/test/java/org/apache/commons/dbcp2/TestDelegatingStatement.java 
b/src/test/java/org/apache/commons/dbcp2/TestDelegatingStatement.java
index 2906205d..770e379a 100644
--- a/src/test/java/org/apache/commons/dbcp2/TestDelegatingStatement.java
+++ b/src/test/java/org/apache/commons/dbcp2/TestDelegatingStatement.java
@@ -37,7 +37,7 @@ import org.junit.jupiter.api.Test;
 
 public class TestDelegatingStatement {
 
-private static class TesterStatementNonWrapping extends TesterStatement {
+private static final class TesterStatementNonWrapping extends 
TesterStatement {
 
 public TesterStatementNonWrapping(final Connection conn) {
 super(conn);
diff --git 
a/src/test/java/org/apache/commons/dbcp2/cpdsadapter/TestDriverAdapterCPDS.java 
b/src/test/java/org/apache/commons/dbcp2/cpdsadapter/TestDriverAdapterCPDS.java
index 49c3e224..2153f242 100644
--- 
a/src/test/java/org/apache/commons/dbcp2/cpdsadapter/TestDriverAdapterCPDS.java
+++ 
b/src/test/java/org/apache/commons/dbcp2/cpdsadapter/TestDriverAdapterCPDS.java
@@ -50,7 +50,7 @@ import org.junit.jupiter.api.Test;
  */
 public class TestDriverAdapterCPDS {
 
-private static class ThreadDbcp367 extends Thread {
+private static final class ThreadDbcp367 extends Thread {
 
 private final DataSource ds;
 
diff --git 
a/src/test/java/org/apache/commons/dbcp2/datasources/TestInstanceKeyDataSource.java
 
b/src/test/java/org/apache/commons/dbcp2/datasources/TestInstanceKeyDataSource.java
index 5e44f09b..75010e39 100644
--- 
a/src/test/java/org/apache/commons/dbcp2/datasources/TestInstanceKeyDataSource.java
+++ 
b/src/test/java/org/apache/commons/dbcp2/datasources/TestInstanceKeyDataSource.java
@@ -39,7 +39,7 @@ import org.junit.jupiter.api.Test;
  */
 public class TestInstanceKeyDataSource {
 
-private static class ThrowOnSetupDefaultsDataSource extends 
SharedPoolDataSource {
+private static final class ThrowOnSetupDefaultsDataSource extends 
SharedPoolDataSource {
 
 private static final long serialVersionUID = -448025812063133259L;
 
diff --git 
a/src/test/java/org/apache/commons/dbcp2/datasources/TestSharedPoolDataSource.java
 
b/src/test/java/org/apache/commons/dbcp2/datasources/TestSharedPoolDataSource.java
index b40f120e..f3f6dfd3 100644
--- 
a/src/test/java/org/apache/commons/dbcp2/datasources/TestSharedPoolDataSource.java
+++ 
b/src/test/java/org/apache/commons/dbcp2/datasources/TestSharedPoolDataSource.java
@@ -75,63 +75,63 @@ public class TestSharedPoolDataSource extends 
TestConnectionPool {
 }
 }
 
-private static class CscbString extends AbstractPrepareCallCallback {
+private static final class CscbString extends AbstractPrepareCallCallback {
 @Override
 CallableStatement getCallableStatement() throws SQLException {
 return conn.prepareCall("{call home()}");
 }
 }
 
-private static class CscbStringIntInt extends AbstractPrepareCallCallback {
+private static final class CscbStringIntInt extends 
AbstractPrepareCallCallback {
 @Override
 CallableStatement getCallableStatement() throws SQLException {
  

[commons-digester] branch master updated: Make private static classes final

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-digester.git


The following commit(s) were added to refs/heads/master by this push:
 new 1eb2a1fb Make private static classes final
1eb2a1fb is described below

commit 1eb2a1fbd6c77051f308ab0345781dc2e95e0e35
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:40:00 2023 -0400

Make private static classes final
---
 .../src/main/java/org/apache/commons/digester3/ObjectCreateRule.java  | 4 ++--
 .../src/main/java/org/apache/commons/digester3/RegexRules.java| 2 +-
 .../src/test/java/org/apache/commons/digester3/DigesterTestCase.java  | 2 +-
 .../java/org/apache/commons/digester3/LocationTrackerTestCase.java| 2 +-
 .../apache/commons/digester3/binder/BinderClassLoaderTestCase.java| 4 ++--
 .../commons/digester3/substitution/CompoundSubstitutorTestCase.java   | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
index e3fccd2a..da197a62 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
@@ -45,7 +45,7 @@ import org.xml.sax.SAXException;
 public class ObjectCreateRule
 extends Rule
 {
-private static class DeferredConstructionCallback implements 
MethodInterceptor
+private static final class DeferredConstructionCallback implements 
MethodInterceptor
 {
 Constructor constructor;
 Object[] constructorArgs;
@@ -89,7 +89,7 @@ public class ObjectCreateRule
 }
 }
 
-private static class ProxyManager
+private static final class ProxyManager
 {
 private final Class clazz;
 private final Constructor constructor;
diff --git 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
index b3c9705a..364c203f 100644
--- 
a/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
+++ 
b/commons-digester3-core/src/main/java/org/apache/commons/digester3/RegexRules.java
@@ -146,7 +146,7 @@ public class RegexRules
 }
 
 /** Used to associate rules with paths in the rules list */
-private static class RegisteredRule
+private static final class RegisteredRule
 {
 String pattern;
 
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
index c12f0b9b..cf6199e9 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/DigesterTestCase.java
@@ -605,7 +605,7 @@ public class DigesterTestCase
 }
 
 /** Utility class for method testStackAction */
-private static class TrackingStackAction
+private static final class TrackingStackAction
 implements StackAction
 {
 public ArrayList events = new ArrayList();
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/LocationTrackerTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/LocationTrackerTestCase.java
index 44edd0a0..439366f7 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/LocationTrackerTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/LocationTrackerTestCase.java
@@ -39,7 +39,7 @@ import org.xml.sax.Locator;
 public class LocationTrackerTestCase
 {
 
-private static class LocationTracker
+private static final class LocationTracker
 implements StackAction
 {
 public Map locations = new HashMap();
diff --git 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
index a28ee83b..7c0fd0e2 100644
--- 
a/commons-digester3-core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
+++ 
b/commons-digester3-core/src/test/java/org/apache/commons/digester3/binder/BinderClassLoaderTestCase.java
@@ -207,7 +207,7 @@ public final class BinderClassLoaderTestCase
 }
 }
 
-private static class ExtendedClassLoader
+private static final class ExtendedClassLoader
 extends ClassLoader
 {
 
@@ -248,7 +248,7 @@ public final class BinderClassLoaderTestCase
 return super.getResource( name );
 }
 
-private static class InMemoryURLStreamHandlerFactory
+private static f

[commons-fileupload] branch master updated: Make private static classes final

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-fileupload.git


The following commit(s) were added to refs/heads/master by this push:
 new 668228e0 Make private static classes final
668228e0 is described below

commit 668228e0abd816f3f753d3ab873b3c965050a2c9
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:43:06 2023 -0400

Make private static classes final
---
 .../fileupload2/jakarta/servlet5/JakartaMockHttpServletRequest.java | 2 +-
 .../fileupload2/jakarta/servlet5/JakartaMockServletHttpRequest.java | 2 +-
 .../fileupload2/jakarta/servlet6/JakartaMockHttpServletRequest.java | 2 +-
 .../fileupload2/jakarta/servlet6/JakartaMockServletHttpRequest.java | 2 +-
 .../apache/commons/fileupload2/javax/JavaxMockHttpServletRequest.java   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockHttpServletRequest.java
 
b/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockHttpServletRequest.java
index d7c43e4c..7d4cdca0 100644
--- 
a/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockHttpServletRequest.java
+++ 
b/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockHttpServletRequest.java
@@ -51,7 +51,7 @@ import jakarta.servlet.http.Part;
  */
 public class JakartaMockHttpServletRequest implements HttpServletRequest {
 
-private static class MyServletInputStream extends ServletInputStream {
+private static final class MyServletInputStream extends ServletInputStream 
{
 
 private final InputStream inputStream;
 private final int readLimit;
diff --git 
a/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockServletHttpRequest.java
 
b/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockServletHttpRequest.java
index 0a726550..9e3746b7 100644
--- 
a/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockServletHttpRequest.java
+++ 
b/commons-fileupload2-jakarta-servlet5/src/test/java/org/apache/commons/fileupload2/jakarta/servlet5/JakartaMockServletHttpRequest.java
@@ -47,7 +47,7 @@ import jakarta.servlet.http.Part;
 
 public class JakartaMockServletHttpRequest implements HttpServletRequest {
 
-private static class MyServletInputStream extends 
jakarta.servlet.ServletInputStream {
+private static final class MyServletInputStream extends 
jakarta.servlet.ServletInputStream {
 
 private final InputStream inputStream;
 private final int readLimit;
diff --git 
a/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockHttpServletRequest.java
 
b/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockHttpServletRequest.java
index de7febbf..bb1c1280 100644
--- 
a/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockHttpServletRequest.java
+++ 
b/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockHttpServletRequest.java
@@ -52,7 +52,7 @@ import jakarta.servlet.http.Part;
  */
 public class JakartaMockHttpServletRequest implements HttpServletRequest {
 
-private static class MyServletInputStream extends ServletInputStream {
+private static final class MyServletInputStream extends ServletInputStream 
{
 
 private final InputStream inputStream;
 private final int readLimit;
diff --git 
a/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockServletHttpRequest.java
 
b/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockServletHttpRequest.java
index 8268ceef..b7ed6975 100644
--- 
a/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockServletHttpRequest.java
+++ 
b/commons-fileupload2-jakarta-servlet6/src/test/java/org/apache/commons/fileupload2/jakarta/servlet6/JakartaMockServletHttpRequest.java
@@ -48,7 +48,7 @@ import jakarta.servlet.http.Part;
 
 public class JakartaMockServletHttpRequest implements HttpServletRequest {
 
-private static class MyServletInputStream extends 
jakarta.servlet.ServletInputStream {
+private static final class MyServletInputStream extends 
jakarta.servlet.ServletInputStream {
 
 private final InputStream inputStream;
 private final int readLimit;
diff --git 
a/commons-fileupload2-javax/src/test/java/org/apache/co

[commons-imaging] branch master updated: Make private static classes final

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-imaging.git


The following commit(s) were added to refs/heads/master by this push:
 new 738d4033 Make private static classes final
738d4033 is described below

commit 738d40335c4314d2e10e4bbcb82ffeee17d460e2
Author: Gary Gregory 
AuthorDate: Tue Oct 10 16:55:42 2023 -0400

Make private static classes final
---
 .../apache/commons/imaging/formats/dcx/DcxImageParser.java   |  2 +-
 .../apache/commons/imaging/formats/icns/IcnsImageParser.java |  4 ++--
 .../apache/commons/imaging/formats/ico/IcoImageParser.java   | 10 +-
 .../commons/imaging/formats/jpeg/exif/ExifRewriter.java  |  6 +++---
 .../org/apache/commons/imaging/formats/png/PngWriter.java|  2 +-
 .../org/apache/commons/imaging/formats/tiff/TiffReader.java  |  4 ++--
 .../imaging/formats/tiff/write/TiffImageWriterLossless.java  |  2 +-
 .../imaging/formats/tiff/write/TiffOutputSummary.java|  2 +-
 .../apache/commons/imaging/formats/xbm/XbmImageParser.java   |  4 ++--
 .../apache/commons/imaging/formats/xpm/XpmImageParser.java   |  6 +++---
 .../org/apache/commons/imaging/palette/PaletteFactory.java   |  2 +-
 .../commons/imaging/bytesource/ByteSourceDataTest.java   |  2 +-
 .../commons/imaging/examples/tiff/SurveyTiffFolder.java  |  2 +-
 .../apache/commons/imaging/formats/ico/IcoRoundtripTest.java | 12 ++--
 14 files changed, 30 insertions(+), 30 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/imaging/formats/dcx/DcxImageParser.java 
b/src/main/java/org/apache/commons/imaging/formats/dcx/DcxImageParser.java
index 8168ab40..6b3090a1 100644
--- a/src/main/java/org/apache/commons/imaging/formats/dcx/DcxImageParser.java
+++ b/src/main/java/org/apache/commons/imaging/formats/dcx/DcxImageParser.java
@@ -41,7 +41,7 @@ import org.apache.commons.imaging.formats.pcx.PcxImageParser;
 import org.apache.commons.imaging.formats.pcx.PcxImagingParameters;
 
 public class DcxImageParser extends AbstractImageParser {
-private static class DcxHeader {
+private static final class DcxHeader {
 
 public static final int DCX_ID = 0x3ADE68B1;
 public final int id;
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/icns/IcnsImageParser.java 
b/src/main/java/org/apache/commons/imaging/formats/icns/IcnsImageParser.java
index 9a37329c..0529ae78 100644
--- a/src/main/java/org/apache/commons/imaging/formats/icns/IcnsImageParser.java
+++ b/src/main/java/org/apache/commons/imaging/formats/icns/IcnsImageParser.java
@@ -38,7 +38,7 @@ import org.apache.commons.imaging.common.BinaryOutputStream;
 import org.apache.commons.imaging.common.ImageMetadata;
 
 public class IcnsImageParser extends 
AbstractImageParser {
-private static class IcnsContents {
+private static final class IcnsContents {
 public final IcnsHeader icnsHeader;
 public final IcnsElement[] icnsElements;
 
@@ -74,7 +74,7 @@ public class IcnsImageParser extends 
AbstractImageParser
 pw.println("");
 }
 }
-private static class IcnsHeader {
+private static final class IcnsHeader {
 public final int magic; // Magic literal (4 bytes), always "icns"
 public final int fileSize; // Length of file (4 bytes), in bytes.
 
diff --git 
a/src/main/java/org/apache/commons/imaging/formats/ico/IcoImageParser.java 
b/src/main/java/org/apache/commons/imaging/formats/ico/IcoImageParser.java
index fc2a4ca4..569f9888 100644
--- a/src/main/java/org/apache/commons/imaging/formats/ico/IcoImageParser.java
+++ b/src/main/java/org/apache/commons/imaging/formats/ico/IcoImageParser.java
@@ -48,7 +48,7 @@ import org.apache.commons.imaging.palette.PaletteFactory;
 import org.apache.commons.imaging.palette.SimplePalette;
 
 public class IcoImageParser extends AbstractImageParser {
-private static class BitmapHeader {
+private static final class BitmapHeader {
 public final int size;
 public final int width;
 public final int height;
@@ -95,7 +95,7 @@ public class IcoImageParser extends 
AbstractImageParser {
 pw.println("ColorsImportant: " + colorsImportant);
 }
 }
-private static class BitmapIconData extends IconData {
+private static final class BitmapIconData extends IconData {
 public final BitmapHeader header;
 public final BufferedImage bufferedImage;
 
@@ -119,7 +119,7 @@ public class IcoImageParser extends 
AbstractImageParser {
 }
 }
 
-private static class FileHeader {
+private static final class FileHeader {
 public final int reserved; // Reserved (2 bytes), always 0
 public final int iconType; // IconType (2 bytes), if the image is an
// icon it?s 1, for cursors the value is 2.
@@ -199,7 +199,7 @@ public class IcoImageParser extends 
AbstractImageParser {

[commons-jcs] 02/02: License header is in the wrong file location.

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-jcs.git

commit e26a1e093a66d21e7d33fb64bef16f49f589bf0b
Author: Gary Gregory 
AuthorDate: Tue Oct 10 17:10:50 2023 -0400

License header is in the wrong file location.
---
 .../commons/jcs/auxiliary/disk/file/FileDiskCache.java | 18 --
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git 
a/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
 
b/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
index d365a394..397f2a8a 100644
--- 
a/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
+++ 
b/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCache.java
@@ -1,7 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.jcs.auxiliary.disk.file;
-
 /*
- * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
  * regarding copyright ownership.  The ASF licenses this file



[commons-jcs] branch master updated (e1f5d104 -> e26a1e09)

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-jcs.git


from e1f5d104 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-jcs
 new 03b3584c Add missing license header
 new e26a1e09 License header is in the wrong file location.

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:
 .../commons/jcs/auxiliary/disk/file/FileDiskCache.java | 18 --
 .../auxiliary/disk/file/FileDiskCacheAttributes.java   | 16 
 2 files changed, 32 insertions(+), 2 deletions(-)



[commons-jcs] 01/02: Add missing license header

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-jcs.git

commit 03b3584ca512b72320f708d276c41544e28c312e
Author: Gary Gregory 
AuthorDate: Tue Oct 10 17:08:03 2023 -0400

Add missing license header
---
 .../jcs/auxiliary/disk/file/FileDiskCacheAttributes.java | 16 
 1 file changed, 16 insertions(+)

diff --git 
a/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCacheAttributes.java
 
b/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCacheAttributes.java
index 94399e7e..64095390 100644
--- 
a/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCacheAttributes.java
+++ 
b/commons-jcs3-sandbox/commons-jcs3-filecache/src/main/java/org/apache/commons/jcs/auxiliary/disk/file/FileDiskCacheAttributes.java
@@ -1,3 +1,19 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.commons.jcs.auxiliary.disk.file;
 
 import org.apache.commons.jcs3.auxiliary.disk.AbstractDiskCacheAttributes;



[commons-lang] branch master updated: Bump commons-parent

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-lang.git


The following commit(s) were added to refs/heads/master by this push:
 new e0eb99198 Bump commons-parent
e0eb99198 is described below

commit e0eb99198c03d534fca3d5258b87de63a3483239
Author: Gary Gregory 
AuthorDate: Tue Oct 10 17:16:53 2023 -0400

Bump commons-parent
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 6f3a1c50d..233588484 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
   
 org.apache.commons
 commons-parent
-62
+64
   
   4.0.0
   commons-lang3



[commons-jci] branch master updated: Make private static classes final

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-jci.git


The following commit(s) were added to refs/heads/master by this push:
 new bf7f942  Make private static classes final
bf7f942 is described below

commit bf7f942d3157100eaa1efebe0b861967a56324b3
Author: Gary Gregory 
AuthorDate: Tue Oct 10 17:20:35 2023 -0400

Make private static classes final
---
 .../commons/jci2/fam/monitor/FilesystemAlterationMonitorTestCase.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fam/src/test/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitorTestCase.java
 
b/fam/src/test/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitorTestCase.java
index d976cca..f998013 100644
--- 
a/fam/src/test/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitorTestCase.java
+++ 
b/fam/src/test/java/org/apache/commons/jci2/fam/monitor/FilesystemAlterationMonitorTestCase.java
@@ -125,7 +125,7 @@ public final class FilesystemAlterationMonitorTestCase 
extends TestCase {
 
 
 
-private static class MyFilesystemAlterationListener extends 
AbstractFilesystemAlterationListener {
+private static final class MyFilesystemAlterationListener extends 
AbstractFilesystemAlterationListener {
 }
 
 private void start() throws Exception {



[commons-net] branch master updated: Make private static classes final

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-net.git


The following commit(s) were added to refs/heads/master by this push:
 new 1a7a8dd4 Make private static classes final
1a7a8dd4 is described below

commit 1a7a8dd49765635fba183e5beeff1beb96ef56d6
Author: Gary Gregory 
AuthorDate: Tue Oct 10 17:21:36 2023 -0400

Make private static classes final
---
 .../java/org/apache/commons/net/examples/mail/IMAPExportMbox.java | 2 +-
 src/main/java/org/apache/commons/net/ftp/FTPClient.java   | 4 ++--
 src/main/java/org/apache/commons/net/util/KeyManagerUtils.java| 4 ++--
 src/main/java/org/apache/commons/net/util/TrustManagerUtils.java  | 2 +-
 src/test/java/org/apache/commons/net/ftp/FTPClientTest.java   | 4 ++--
 5 files changed, 8 insertions(+), 8 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java 
b/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java
index 0208dec9..fa54cf56 100644
--- a/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java
+++ b/src/main/java/org/apache/commons/net/examples/mail/IMAPExportMbox.java
@@ -80,7 +80,7 @@ import org.apache.commons.net.imap.IMAPReply;
  */
 public final class IMAPExportMbox {
 
-private static class MboxListener implements IMAPChunkListener {
+private static final class MboxListener implements IMAPChunkListener {
 
 private final BufferedWriter bufferedWriter;
 volatile AtomicInteger total = new AtomicInteger();
diff --git a/src/main/java/org/apache/commons/net/ftp/FTPClient.java 
b/src/main/java/org/apache/commons/net/ftp/FTPClient.java
index 7b89d46c..617def64 100644
--- a/src/main/java/org/apache/commons/net/ftp/FTPClient.java
+++ b/src/main/java/org/apache/commons/net/ftp/FTPClient.java
@@ -244,7 +244,7 @@ import org.apache.commons.net.util.NetConstants;
 public class FTPClient extends FTP implements Configurable {
 
 // @since 3.0
-private static class CSL implements CopyStreamListener {
+private static final class CSL implements CopyStreamListener {
 
 private final FTPClient parent;
 private final long idleMillis;
@@ -337,7 +337,7 @@ public class FTPClient extends FTP implements Configurable {
 }
 }
 
-private static class PropertiesSingleton {
+private static final class PropertiesSingleton {
 
 static final Properties PROPERTIES;
 
diff --git a/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java 
b/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java
index f2e64c2e..fe0e6493 100644
--- a/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java
+++ b/src/main/java/org/apache/commons/net/util/KeyManagerUtils.java
@@ -65,7 +65,7 @@ import org.apache.commons.net.io.Util;
  */
 public final class KeyManagerUtils {
 
-private static class ClientKeyStore {
+private static final class ClientKeyStore {
 
 private final X509Certificate[] certChain;
 private final PrivateKey key;
@@ -93,7 +93,7 @@ public final class KeyManagerUtils {
 }
 }
 
-private static class X509KeyManager extends X509ExtendedKeyManager {
+private static final class X509KeyManager extends X509ExtendedKeyManager {
 
 private final ClientKeyStore keyStore;
 
diff --git a/src/main/java/org/apache/commons/net/util/TrustManagerUtils.java 
b/src/main/java/org/apache/commons/net/util/TrustManagerUtils.java
index 9efa550c..91da9d21 100644
--- a/src/main/java/org/apache/commons/net/util/TrustManagerUtils.java
+++ b/src/main/java/org/apache/commons/net/util/TrustManagerUtils.java
@@ -32,7 +32,7 @@ import javax.net.ssl.X509TrustManager;
  */
 public final class TrustManagerUtils {
 
-private static class TrustManager implements X509TrustManager {
+private static final class TrustManager implements X509TrustManager {
 
 private final boolean checkServerValidity;
 
diff --git a/src/test/java/org/apache/commons/net/ftp/FTPClientTest.java 
b/src/test/java/org/apache/commons/net/ftp/FTPClientTest.java
index 5576b393..a9c898f6 100644
--- a/src/test/java/org/apache/commons/net/ftp/FTPClientTest.java
+++ b/src/test/java/org/apache/commons/net/ftp/FTPClientTest.java
@@ -28,7 +28,7 @@ import junit.framework.TestCase;
 
 public class FTPClientTest extends TestCase {
 
-private static class LocalClient extends FTPClient {
+private static final class LocalClient extends FTPClient {
 
 private String systemType;
 
@@ -42,7 +42,7 @@ public class FTPClientTest extends TestCase {
 }
 }
 
-private static class PassiveNatWorkAroundLocalClient extends FTPClient {
+private static final class PassiveNatWorkAroundLocalClient extends 
FTPClient {
 private final String passiveModeServerIP;
 
 public PassiveNatWorkAroundLocalClient(final String 
passiveModeServerIP

[commons-logging] branch master updated: 64 is OK locally but not on GitHub

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-logging.git


The following commit(s) were added to refs/heads/master by this push:
 new 863d561  64 is OK locally but not on GitHub
863d561 is described below

commit 863d5612c2ed0c081ab63116956230cad9eb348a
Author: Gary Gregory 
AuthorDate: Tue Oct 10 17:29:59 2023 -0400

64 is OK locally but not on GitHub
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 12444d2..5a496a7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,8 +26,8 @@ under the License.
   
 org.apache.commons
 commons-parent
-
-64
+
+59
   
   4.0.0
   commons-logging



[commons-io] branch master updated: Fix Javadoc error and warnings

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


The following commit(s) were added to refs/heads/master by this push:
 new e3aeb380 Fix Javadoc error and warnings
 new b507d7e6 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-io.git
e3aeb380 is described below

commit e3aeb380b429dfa54b757c4ac6077c173e885d93
Author: Gary Gregory 
AuthorDate: Tue Oct 10 20:46:28 2023 -0400

Fix Javadoc error and warnings
---
 src/main/java/org/apache/commons/io/StreamIterator.java  |  2 +-
 .../org/apache/commons/io/build/AbstractStreamBuilder.java   |  5 +
 .../apache/commons/io/input/MemoryMappedFileInputStream.java |  3 +++
 .../io/input/MessageDigestCalculatingInputStream.java|  3 +++
 .../commons/io/input/UnsynchronizedByteArrayInputStream.java | 12 
 .../java/org/apache/commons/io/input/XmlStreamReader.java| 12 
 .../org/apache/commons/io/output/LockableFileWriter.java |  3 +++
 .../org/apache/commons/io/output/WriterOutputStream.java |  3 +++
 .../java/org/apache/commons/io/output/XmlStreamWriter.java   |  3 +++
 9 files changed, 45 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/StreamIterator.java 
b/src/main/java/org/apache/commons/io/StreamIterator.java
index a77a9f7b..7e5d09e1 100644
--- a/src/main/java/org/apache/commons/io/StreamIterator.java
+++ b/src/main/java/org/apache/commons/io/StreamIterator.java
@@ -36,7 +36,7 @@ public final class StreamIterator implements Iterator, 
AutoCloseable {
 
 /**
  * Wraps and presents a stream as a closable resource that automatically 
closes itself when reaching the end of stream.
- * Warning
+ * Warning
  * 
  * In order to close the stream, the call site MUST either close the 
stream it allocated OR call this iterator until the end.
  * 
diff --git 
a/src/main/java/org/apache/commons/io/build/AbstractStreamBuilder.java 
b/src/main/java/org/apache/commons/io/build/AbstractStreamBuilder.java
index d94638ac..e0f9ba66 100644
--- a/src/main/java/org/apache/commons/io/build/AbstractStreamBuilder.java
+++ b/src/main/java/org/apache/commons/io/build/AbstractStreamBuilder.java
@@ -154,6 +154,11 @@ public abstract class AbstractStreamBuilder {
 
+/**
+ * Constructs a new Builder.
+ */
 public Builder() {
 setBufferSizeDefault(DEFAULT_BUFFER_SIZE);
 setBufferSize(DEFAULT_BUFFER_SIZE);
diff --git 
a/src/main/java/org/apache/commons/io/input/MessageDigestCalculatingInputStream.java
 
b/src/main/java/org/apache/commons/io/input/MessageDigestCalculatingInputStream.java
index 7aed4185..96b22b1c 100644
--- 
a/src/main/java/org/apache/commons/io/input/MessageDigestCalculatingInputStream.java
+++ 
b/src/main/java/org/apache/commons/io/input/MessageDigestCalculatingInputStream.java
@@ -61,6 +61,9 @@ public class MessageDigestCalculatingInputStream extends 
ObservableInputStream {
 
 private MessageDigest messageDigest;
 
+/**
+ * Constructs a new Builder.
+ */
 public Builder() {
 try {
 this.messageDigest = getDefaultMessageDigest();
diff --git 
a/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
 
b/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
index a4fc696c..f10c1120 100644
--- 
a/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
+++ 
b/src/main/java/org/apache/commons/io/input/UnsynchronizedByteArrayInputStream.java
@@ -106,6 +106,12 @@ public class UnsynchronizedByteArrayInputStream extends 
InputStream {
 return super.setByteArray(origin);
 }
 
+/**
+ * Sets the length.
+ *
+ * @param length Must be greater or equal to 0.
+ * @return this.
+ */
 public Builder setLength(final int length) {
 if (length < 0) {
 throw new IllegalArgumentException("length cannot be 
negative");
@@ -114,6 +120,12 @@ public class UnsynchronizedByteArrayInputStream extends 
InputStream {
 return this;
 }
 
+/**
+ * Sets the offset.
+ *
+ * @param offset Must be greater or equal to 0.
+ * @return this.
+ */
 public Builder setOffset(final int offset) {
 if (offset < 0) {
 throw new IllegalArgumentException("offset cannot be 
negative");
diff --git a/src/main/java/org/apache/commons/io/input/XmlStreamReader.java 
b/src/main/java/org/apache/commons/io/input/XmlStreamReader.java
index f50fc76e..290e5360 100644
--- a/src/main/java/org/apache/commons/io/input/XmlStreamReader.java
+++ b/src/main/java/org/apache/commons/io/input/XmlStreamReader.java
@@ -157,11 +157,23 @@ public class XmlStreamReader extends Reader {
  

[commons-io] branch master updated (b507d7e6 -> be4967e9)

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 b507d7e6 Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-io.git
 new 35f5058e Remove trailing whitespace
 new be4967e9 Javadoc

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/main/java/org/apache/commons/io/ByteOrderMark.java  | 7 +++
 src/main/java/org/apache/commons/io/StreamIterator.java | 4 +++-
 2 files changed, 10 insertions(+), 1 deletion(-)



[commons-io] 02/02: Javadoc

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 be4967e982e88c9236199528cfa50bdca1fe30c6
Author: Gary Gregory 
AuthorDate: Tue Oct 10 21:21:51 2023 -0400

Javadoc
---
 src/main/java/org/apache/commons/io/StreamIterator.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/StreamIterator.java 
b/src/main/java/org/apache/commons/io/StreamIterator.java
index cd09d828..23465657 100644
--- a/src/main/java/org/apache/commons/io/StreamIterator.java
+++ b/src/main/java/org/apache/commons/io/StreamIterator.java
@@ -36,7 +36,9 @@ public final class StreamIterator implements Iterator, 
AutoCloseable {
 
 /**
  * Wraps and presents a stream as a closable resource that automatically 
closes itself when reaching the end of stream.
- * Warning
+ * 
+ * Warning
+ * 
  * 
  * In order to close the stream, the call site MUST either close the 
stream it allocated OR call this iterator until the end.
  * 



[commons-io] 01/02: Remove trailing whitespace

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 35f5058ed2700ae74098965cc8aa83a4d0a56f04
Author: Gary Gregory 
AuthorDate: Tue Oct 10 21:20:22 2023 -0400

Remove trailing whitespace
---
 src/main/java/org/apache/commons/io/ByteOrderMark.java | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/src/main/java/org/apache/commons/io/ByteOrderMark.java 
b/src/main/java/org/apache/commons/io/ByteOrderMark.java
index 2e4f0305..c5ab57b1 100644
--- a/src/main/java/org/apache/commons/io/ByteOrderMark.java
+++ b/src/main/java/org/apache/commons/io/ByteOrderMark.java
@@ -115,7 +115,14 @@ public class ByteOrderMark implements Serializable {
  */
 public static final char UTF_BOM = '\uFEFF';
 
+/**
+ * Charset name.
+ */
 private final String charsetName;
+
+/**
+ * Bytes.
+ */
 private final int[] bytes;
 
 /**



[commons-lang] branch master updated: Make private static classes final

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-lang.git


The following commit(s) were added to refs/heads/master by this push:
 new 30dc88fd7 Make private static classes final
30dc88fd7 is described below

commit 30dc88fd7725531049a9d8498c16492bcff40349
Author: Gary Gregory 
AuthorDate: Tue Oct 10 21:22:24 2023 -0400

Make private static classes final
---
 src/main/java/org/apache/commons/lang3/CharRange.java|  2 +-
 .../commons/lang3/concurrent/EventCountCircuitBreaker.java   |  6 +++---
 src/main/java/org/apache/commons/lang3/event/EventUtils.java |  2 +-
 .../java/org/apache/commons/lang3/stream/LangCollectors.java |  2 +-
 src/main/java/org/apache/commons/lang3/stream/Streams.java   |  2 +-
 src/main/java/org/apache/commons/lang3/text/StrLookup.java   |  2 +-
 .../java/org/apache/commons/lang3/time/FastDateParser.java   | 10 +-
 src/test/java/org/apache/commons/lang3/ClassUtilsTest.java   |  4 ++--
 .../apache/commons/lang3/StringUtilsEqualsIndexOfTest.java   |  2 +-
 src/test/java/org/apache/commons/lang3/ThreadUtilsTest.java  |  2 +-
 .../org/apache/commons/lang3/builder/DiffBuilderTest.java|  2 +-
 .../org/apache/commons/lang3/builder/DiffResultTest.java |  4 ++--
 src/test/java/org/apache/commons/lang3/builder/DiffTest.java |  2 +-
 .../commons/lang3/builder/ReflectionDiffBuilderTest.java |  2 +-
 .../apache/commons/lang3/builder/ToStringBuilderTest.java|  4 ++--
 .../org/apache/commons/lang3/builder/ToStringStyleTest.java  |  2 +-
 .../commons/lang3/compare/ObjectToStringComparatorTest.java  |  2 +-
 .../commons/lang3/concurrent/AtomicSafeInitializerTest.java  |  2 +-
 .../commons/lang3/concurrent/BackgroundInitializerTest.java  |  2 +-
 .../lang3/concurrent/CallableBackgroundInitializerTest.java  |  2 +-
 .../lang3/concurrent/EventCountCircuitBreakerTest.java   |  4 ++--
 .../apache/commons/lang3/concurrent/LazyInitializerTest.java |  2 +-
 .../lang3/concurrent/MultiBackgroundInitializerTest.java |  2 +-
 .../apache/commons/lang3/concurrent/TimedSemaphoreTest.java  |  6 +++---
 .../apache/commons/lang3/concurrent/UncheckedFutureTest.java |  2 +-
 .../java/org/apache/commons/lang3/event/EventUtilsTest.java  |  2 +-
 .../apache/commons/lang3/exception/ExceptionUtilsTest.java   |  6 +++---
 .../apache/commons/lang3/reflect/ConstructorUtilsTest.java   |  2 +-
 .../org/apache/commons/lang3/reflect/MethodUtilsTest.java|  6 +++---
 .../org/apache/commons/lang3/stream/LangCollectorsTest.java  |  2 +-
 .../commons/lang3/test/NotVisibleExceptionFactory.java   |  2 +-
 .../apache/commons/lang3/text/ExtendedMessageFormatTest.java | 12 ++--
 .../java/org/apache/commons/lang3/text/StrBuilderTest.java   |  2 +-
 33 files changed, 54 insertions(+), 54 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/CharRange.java 
b/src/main/java/org/apache/commons/lang3/CharRange.java
index 0437e2d6a..cf90e0950 100644
--- a/src/main/java/org/apache/commons/lang3/CharRange.java
+++ b/src/main/java/org/apache/commons/lang3/CharRange.java
@@ -271,7 +271,7 @@ final class CharRange implements Iterable, 
Serializable {
  * Character {@link Iterator}.
  * #NotThreadSafe#
  */
-private static class CharacterIterator implements Iterator {
+private static final class CharacterIterator implements 
Iterator {
 /** The current character */
 private char current;
 
diff --git 
a/src/main/java/org/apache/commons/lang3/concurrent/EventCountCircuitBreaker.java
 
b/src/main/java/org/apache/commons/lang3/concurrent/EventCountCircuitBreaker.java
index 5c9f44b0b..749020ac8 100644
--- 
a/src/main/java/org/apache/commons/lang3/concurrent/EventCountCircuitBreaker.java
+++ 
b/src/main/java/org/apache/commons/lang3/concurrent/EventCountCircuitBreaker.java
@@ -433,7 +433,7 @@ public class EventCountCircuitBreaker extends 
AbstractCircuitBreaker {
  * this class. Basically, the number of received events and the start time 
of the
  * current check interval are stored.
  */
-private static class CheckIntervalData {
+private static final class CheckIntervalData {
 /** The counter for events. */
 private final int eventCount;
 
@@ -527,7 +527,7 @@ public class EventCountCircuitBreaker extends 
AbstractCircuitBreaker {
 /**
  * A specialized {@link StateStrategy} implementation for the state closed.
  */
-private static class StateStrategyClosed extends StateStrategy {
+private static final class StateStrategyClosed extends StateStrategy {
 
 /**
  * {@inheritDoc}
@@ -550,7 +550,7 @@ public class EventCountCircuitBreaker extends 
AbstractCircuitBreaker {
 /**
  * A specialized {@link StateStrategy} implementation for the state open.
  */
-private static class StateStrategyOpen extends StateStrategy {
+private static final class Stat