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-beanutils.git
The following commit(s) were added to refs/heads/master by this push: new 3d08a74 Use Javadoc tags instead of HTML. 3d08a74 is described below commit 3d08a74ca4ae9cb9b21d874b7608977d8a94447b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Oct 17 10:53:23 2021 -0400 Use Javadoc tags instead of HTML. --- src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java | 2 +- src/main/java/org/apache/commons/beanutils2/LazyDynaList.java | 4 ++-- src/main/java/org/apache/commons/beanutils2/package-info.java | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java index 4a571a6..63b4aa1 100644 --- a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java +++ b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java @@ -754,7 +754,7 @@ public class BeanUtilsBean { * the specified name/value pairs. This method uses Java reflection APIs * to identify corresponding "property setter" method names, and deals * with setter arguments of type {@code String</code>, <code>boolean}, - * {@code int</code>, <code>long</code>, <code>float}, and + * {@code int}, {@code long}, {@code float}, and * {@code double}. In addition, array setters for these types (or the * corresponding primitive types) can also be identified.</p> * diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java b/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java index 689d17d..ff8bfb2 100644 --- a/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java +++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java @@ -138,8 +138,8 @@ import java.util.Map; * <p>A slight variation - set the element type using either * the {@code setElementType(Class)} method or the * {@code setElementDynaClass(DynaClass)} method - then populate - * with the normal {@code java.util.List} methods(i.e. - * {@code add()</code>, <code>addAll()</code> or <code>set()}).</p> + * with the normal {@code java.util.List} methods (i.e. + * {@code add()}, {@code addAll()} or {@code set()}).</p> * * <pre><code> * // Create a new LazyDynaList (100 element capacity) diff --git a/src/main/java/org/apache/commons/beanutils2/package-info.java b/src/main/java/org/apache/commons/beanutils2/package-info.java index 3dab915..ebb8452 100644 --- a/src/main/java/org/apache/commons/beanutils2/package-info.java +++ b/src/main/java/org/apache/commons/beanutils2/package-info.java @@ -724,7 +724,7 @@ * In fact it actually implements the {@code DynaClass</code> interface itself (and <code>MutableDynaClass}) * and derives all the <i>DynaClass</i> information from the actual contents of the {@code Map}. A * {@code LazyDynaMap</code> can be created around an existing <code>Map} or can instantiate its own - * {@code Map</code>. After any <code>DynaBean</code> processing has finished the <code>Map} can be retrieved + * {@code Map</code>. After any {@code DynaBean} processing has finished the <code>Map} can be retrieved * and the DynaBean <i>facade</i> discarded.</p> * * <p>If you need a new {@code Map} then to use....</p> @@ -789,7 +789,7 @@ * * <p><strong>NOTE:</strong> One feature of {@link org.apache.commons.beanutils2.MutableDynaClass} is that it * has a <i>Restricted</i> property. When the DynaClass is <i>restricted</i> no properties can be added - * or removed from the {@code DynaClass</code>. Neither the <code>LazyDynaBean</code> or <code>LazyDynaMap} + * or removed from the {@code DynaClass}. Neither the {@code LazyDynaBean} or {@code LazyDynaMap} * will add properties automatically if the {@code DynaClass} is <i>restricted</i>.</p> * *