Skip to content

Commit 9625a80

Browse files
committed
Fix broken Javadoc HTML tags
1 parent 8fa1487 commit 9625a80

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,9 @@ private void registerArrays(final boolean throwException, final int defaultArray
674674

675675
/**
676676
* Register the converters for other types.
677-
* </p>
677+
* <p>
678678
* This method registers the following converters:
679+
* </p>
679680
* <ul>
680681
* <li>{@code Class.class} - {@link ClassConverter}</li>
681682
* <li>{@code java.util.Date.class} - {@link DateConverter}</li>
@@ -704,8 +705,9 @@ private void registerOther(final boolean throwException) {
704705

705706
/**
706707
* Register the converters for primitive types.
707-
* </p>
708+
* <p>
708709
* This method registers the following converters:
710+
* </p>
709711
* <ul>
710712
* <li>{@code Boolean.TYPE} - {@link BooleanConverter}</li>
711713
* <li>{@code Byte.TYPE} - {@link ByteConverter}</li>
@@ -734,8 +736,9 @@ private void registerPrimitives(final boolean throwException) {
734736

735737
/**
736738
* Register the converters for standard types.
737-
* </p>
739+
* <p>
738740
* This method registers the following converters:
741+
* </p>
739742
* <ul>
740743
* <li>{@code BigDecimal.class} - {@link BigDecimalConverter}</li>
741744
* <li>{@code BigInteger.class} - {@link BigIntegerConverter}</li>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ public DynaBean[] toDynaBeanArray() {
633633
* <li>Map elements are turned into LazyDynaMap's.</li>
634634
* <li>POJO Beans are "wrapped" in a WrapDynaBean.</li>
635635
* <li>DynaBeans are unchanged.</li>
636-
* </li>
636+
* </ul>
637637
*
638638
* @param element The element to transformed.
639639
* @param The DynaBean to store in the List.

src/test/java/org/apache/commons/beanutils/ConstructorUtilsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
import junit.framework.TestCase;
2424

2525
/**
26-
* Tests {@link ConstructorUtils} </p>
26+
* Tests {@link ConstructorUtils}.
2727
*/
2828
@SuppressWarnings("deprecation")
2929
public class ConstructorUtilsTest extends TestCase {
3030

3131
/**
3232
* Construct a new instance of this test case.
3333
*
34-
* @param name Name of the test case
34+
* @param name Name of the test case.
3535
*/
3636
public ConstructorUtilsTest(final String name) {
3737
super(name);

0 commit comments

Comments
 (0)