Skip to content

Commit 7a20799

Browse files
committed
Fix malformed Javadoc comments
1 parent bc1018a commit 7a20799

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

src/changes/changes.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<!-- FIX -->
3333
<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>
3434
<action dev="ggregory" type="fix" due-to="Basil Crow, Piotr P. Karwasz, Gary Gregory">Simplify FluentPropertyBeanIntrospector#propertyName (#363).</action>
35+
<action type="fix" dev="ggregory" due-to="Gary Gregory">Fix malformed Javadoc comments.</action>
3536
<!-- ADD -->
3637
<!-- UPDATE -->
3738
<action dev="ggregory" type="update" due-to="Gary Gregory">Bump org.apache.commons:commons-parent from 84 to 91.</action>

src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
* in "fast" mode, read calls are non-synchronized and write calls perform the
3232
* following steps:</p>
3333
* <ul>
34-
* <li>Clone the existing collection
35-
* <li>Perform the modification on the clone
36-
* <li>Replace the existing collection with the (modified) clone
34+
* <li>Clone the existing collection</li>
35+
* <li>Perform the modification on the clone</li>
36+
* <li>Replace the existing collection with the (modified) clone</li>
3737
* </ul>
3838
* <p>When first created, objects of this class default to "slow" mode, where
3939
* all accesses of any type are synchronized but no cloning takes place. This

src/main/java/org/apache/commons/beanutils/converters/ArrayConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
* the delimiter to be configured [default is a comma].</li>
9494
* <li>{@code setAllowedChars(char[])} - adds additional characters
9595
* (to the default alphabetic/numeric) to those considered to be
96-
* valid token characters.
96+
* valid token characters.</li>
9797
* </ul>
9898
*
9999
* <h2>Multi Dimensional Arrays</h2>

0 commit comments

Comments
 (0)