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

commit dfc375ea244e58dd9412b5affb4e92f6d52a5962
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Dec 30 13:30:28 2025 +0000

    Javadoc typos
---
 src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java 
b/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
index cca87ce0..b1a32ae0 100644
--- a/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
+++ b/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
@@ -575,9 +575,9 @@ class WeakFastHashMap<K, V> extends HashMap<K, V> {
     }
 
     /**
-     *  Returns true if this map is operating in fast mode.
+     * Returns true if this map is operating in fast mode.
      *
-     *  @return true if this map is operating in fast mode
+     * @return true if this map is operating in fast mode
      */
     public boolean getFast() {
         return this.fast;
@@ -704,9 +704,9 @@ class WeakFastHashMap<K, V> extends HashMap<K, V> {
     }
 
     /**
-     *  Sets whether this map is operating in fast mode.
+     * Sets whether this map is operating in fast mode.
      *
-     *  @param fast true if this map should operate in fast mode
+     * @param fast true if this map should operate in fast mode
      */
     public void setFast(final boolean fast) {
         this.fast = fast;

Reply via email to