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 9285d2db Javadoc
9285d2db is described below
commit 9285d2db0b78b67f7e0032ccb55dfd5beca37076
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Nov 5 13:37:32 2025 -0500
Javadoc
---
src/main/java/org/apache/commons/beanutils/BeanMap.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/beanutils/BeanMap.java
b/src/main/java/org/apache/commons/beanutils/BeanMap.java
index d822f11d..a8361921 100644
--- a/src/main/java/org/apache/commons/beanutils/BeanMap.java
+++ b/src/main/java/org/apache/commons/beanutils/BeanMap.java
@@ -313,14 +313,14 @@ public class BeanMap extends AbstractMap<Object, Object>
implements Cloneable {
* Converts the given value to the given type. First, reflection is is
used to find a public constructor declared by the given class that takes one
* argument, which must be the precise type of the given value. If such a
constructor is found, a new object is created by passing the given value to that
* constructor, and the newly constructed object is returned.
- * <P>
- *
+ * <p>
* If no such constructor exists, and the given type is a primitive type,
then the given value is converted to a string using its {@link Object#toString()
* toString()} method, and that string is parsed into the correct
primitive type using, for instance, {@link Integer#valueOf(String)} to convert
the string
* into an {@code int}.
- * <P>
- *
+ * </p>
+ * <p>
* If no special constructor exists and the given type is not a primitive
type, this method returns the original value.
+ * </p>
*
* @param newType the type to convert the value to
* @param value the value to convert