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 7b6d86295 Javadoc
7b6d86295 is described below

commit 7b6d86295ba60a11237305c106850010b77b3d3b
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Mar 22 22:27:24 2026 -0700

    Javadoc
---
 .../configuration2/builder/BuilderConfigurationWrapperFactory.java    | 4 +---
 .../org/apache/commons/configuration2/interpol/DefaultLookups.java    | 4 +---
 src/main/java/org/apache/commons/configuration2/sync/LockMode.java    | 4 +---
 .../java/org/apache/commons/configuration2/tree/NodeNameMatchers.java | 4 +---
 .../java/org/apache/commons/configuration2/SynchronizerTestImpl.java  | 2 +-
 5 files changed, 5 insertions(+), 13 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/configuration2/builder/BuilderConfigurationWrapperFactory.java
 
b/src/main/java/org/apache/commons/configuration2/builder/BuilderConfigurationWrapperFactory.java
index 418b4f713..0696b3c83 100644
--- 
a/src/main/java/org/apache/commons/configuration2/builder/BuilderConfigurationWrapperFactory.java
+++ 
b/src/main/java/org/apache/commons/configuration2/builder/BuilderConfigurationWrapperFactory.java
@@ -117,10 +117,8 @@ public class BuilderConfigurationWrapperFactory {
     }
 
     /**
-     * <p>
-     * An enumeration class with different options for supporting the {@code 
EventSource} interface in generated
+     * Enumerates options for supporting the {@code EventSource} interface in 
generated
      * {@code ImmutableConfiguration} proxies.
-     * </p>
      * <p>
      * Using literals of this class it is possible to specify that a {@code 
ImmutableConfiguration} object returned by
      * {@code BuilderConfigurationWrapperFactory} also implements the {@code 
EventSource} interface and how this
diff --git 
a/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java 
b/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
index 6ac45bdb3..a7d9db0aa 100644
--- 
a/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
+++ 
b/src/main/java/org/apache/commons/configuration2/interpol/DefaultLookups.java
@@ -19,10 +19,8 @@ package org.apache.commons.configuration2.interpol;
 import org.apache.commons.text.lookup.StringLookupFactory;
 
 /**
- * <p>
- * An enumeration class defining constants for built-in {@code Lookup} objects 
available for
+ * Enumerates built-in {@code Lookup} objects available for
  * {@code Configuration} instances.
- * </p>
  * <p>
  * When a new configuration object derived from {@code AbstractConfiguration} 
is created, it installs a
  * {@link ConfigurationInterpolator} containing a default set of {@link 
Lookup} objects. These lookups are
diff --git a/src/main/java/org/apache/commons/configuration2/sync/LockMode.java 
b/src/main/java/org/apache/commons/configuration2/sync/LockMode.java
index 0efbd55e3..fc0c23dce 100644
--- a/src/main/java/org/apache/commons/configuration2/sync/LockMode.java
+++ b/src/main/java/org/apache/commons/configuration2/sync/LockMode.java
@@ -17,9 +17,7 @@
 package org.apache.commons.configuration2.sync;
 
 /**
- * <p>
- * An enumeration used by {@link SynchronizerSupport} to specify how an object 
is locked.
- * </p>
+ * Enumerates how an object is locked for {@link SynchronizerSupport}.
  * <p>
  * The {@code SynchronizerSupport} interface allows locking an object. This 
can be done in different ways controlling
  * the level of concurrency still possible with the object. One of the 
constants defined here can be passed in when
diff --git 
a/src/main/java/org/apache/commons/configuration2/tree/NodeNameMatchers.java 
b/src/main/java/org/apache/commons/configuration2/tree/NodeNameMatchers.java
index f23785175..606637f03 100644
--- a/src/main/java/org/apache/commons/configuration2/tree/NodeNameMatchers.java
+++ b/src/main/java/org/apache/commons/configuration2/tree/NodeNameMatchers.java
@@ -19,9 +19,7 @@ package org.apache.commons.configuration2.tree;
 import org.apache.commons.lang3.Strings;
 
 /**
- * <p>
- * An enumeration class with several pre-defined {@link NodeMatcher} 
implementations based on node names.
- * </p>
+ * Enumerates {@link NodeMatcher} implementations based on node names.
  * <p>
  * Filtering nodes by their name is a typical use case. Therefore, some 
default implementations for typical filter
  * algorithms are already provided. They are available as constants of this 
class. Because the algorithms are state-less
diff --git 
a/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java 
b/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java
index a4f483787..a06350ed1 100644
--- a/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java
+++ b/src/test/java/org/apache/commons/configuration2/SynchronizerTestImpl.java
@@ -27,7 +27,7 @@ import org.apache.commons.configuration2.sync.Synchronizer;
 public class SynchronizerTestImpl implements Synchronizer {
 
     /**
-     * An enumeration with the methods of the Synchronizer which can be called.
+     * Enumerates the methods of the Synchronizer which can be called.
      */
     public enum Methods {
         BEGIN_READ, END_READ, BEGIN_WRITE, END_WRITE

Reply via email to