This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch 1.X
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git
The following commit(s) were added to refs/heads/1.X by this push:
new 7a207994 Fix malformed Javadoc comments
7a207994 is described below
commit 7a207994cbbf95df067c5ba859685178fa8bec9c
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Dec 13 08:56:21 2025 -0500
Fix malformed Javadoc comments
---
src/changes/changes.xml | 1 +
src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java | 6 +++---
.../org/apache/commons/beanutils/converters/ArrayConverter.java | 2 +-
3 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0a9d0e55..50da68ca 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -32,6 +32,7 @@
<!-- FIX -->
<action dev="ggregory" type="fix" due-to="Gary Gregory">Fix typo in
exception message throws from
org.apache.commons.beanutils.PropertyUtilsBean.setMappedProperty(Object,
String, String, Object).</action>
<action dev="ggregory" type="fix" due-to="Basil Crow, Piotr P. Karwasz,
Gary Gregory">Simplify FluentPropertyBeanIntrospector#propertyName
(#363).</action>
+ <action type="fix" dev="ggregory" due-to="Gary Gregory">Fix malformed
Javadoc comments.</action>
<!-- ADD -->
<!-- UPDATE -->
<action dev="ggregory" type="update" due-to="Gary Gregory">Bump
org.apache.commons:commons-parent from 84 to 91.</action>
diff --git a/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
b/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
index abd09006..cca87ce0 100644
--- a/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
+++ b/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
@@ -31,9 +31,9 @@ import java.util.WeakHashMap;
* in "fast" mode, read calls are non-synchronized and write calls perform the
* following steps:</p>
* <ul>
- * <li>Clone the existing collection
- * <li>Perform the modification on the clone
- * <li>Replace the existing collection with the (modified) clone
+ * <li>Clone the existing collection</li>
+ * <li>Perform the modification on the clone</li>
+ * <li>Replace the existing collection with the (modified) clone</li>
* </ul>
* <p>When first created, objects of this class default to "slow" mode, where
* all accesses of any type are synchronized but no cloning takes place. This
diff --git
a/src/main/java/org/apache/commons/beanutils/converters/ArrayConverter.java
b/src/main/java/org/apache/commons/beanutils/converters/ArrayConverter.java
index 9815eebc..da359701 100644
--- a/src/main/java/org/apache/commons/beanutils/converters/ArrayConverter.java
+++ b/src/main/java/org/apache/commons/beanutils/converters/ArrayConverter.java
@@ -93,7 +93,7 @@ import org.apache.commons.beanutils.Converter;
* the delimiter to be configured [default is a comma].</li>
* <li>{@code setAllowedChars(char[])} - adds additional characters
* (to the default alphabetic/numeric) to those considered to be
- * valid token characters.
+ * valid token characters.</li>
* </ul>
*
* <h2>Multi Dimensional Arrays</h2>