Skip to content

Commit 66d4522

Browse files
committed
Javadoc
1 parent 3ad1c4c commit 66d4522

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* variable with other components that happen to be running in the same
3939
* container at the same time (eg servlets or EJBs.)</p>
4040
*
41-
* <p>This class is strongly patterned after the java.lang.ThreadLocal
41+
* <p>This class is strongly patterned after the {@link ThreadLocal}
4242
* class, which performs a similar task in allowing data to be associated
4343
* with a particular thread.</p>
4444
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public CharacterConverter(final Object defaultValue) {
4747
}
4848

4949
/**
50-
* <p>Convert a java.lang.Class or object into a String.</p>
50+
* <p>Convert a {@link Class} or object into a {@link String}.</p>
5151
*
5252
* @param value The input value to be converted
5353
* @return the converted String value.
@@ -60,7 +60,7 @@ protected String convertToString(final Object value) {
6060
}
6161

6262
/**
63-
* <p>Convert the input object into a java.lang.Character.</p>
63+
* <p>Convert the input object into a {@link Character}.</p>
6464
*
6565
* @param <T> Target type of the conversion.
6666
* @param type Data type to which this value should be converted.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected String convertToString(final Object value) {
6363
}
6464

6565
/**
66-
* <p>Convert the input object into a java.lang.Class.</p>
66+
* <p>Convert the input object into a {@link Class}.</p>
6767
*
6868
* @param <T> Target type of the conversion.
6969
* @param type Data type to which this value should be converted.

0 commit comments

Comments
 (0)