Fix simple broken javadoc. (#981)
This commit is contained in:
parent
1c1e482e5a
commit
a1e911a935
|
@ -1496,7 +1496,7 @@ public class ClassUtils {
|
|||
/**
|
||||
* Converts a class name to a JLS style class name.
|
||||
*
|
||||
* @param canonicalName the class name
|
||||
* @param className the class name
|
||||
* @return the converted name
|
||||
* @throws NullPointerException if the className is null
|
||||
*/
|
||||
|
|
|
@ -74,7 +74,6 @@ public final class DoubleRange extends NumberRange<Double> {
|
|||
*
|
||||
* @param number1 the first element, not null
|
||||
* @param number2 the second element, not null
|
||||
* @param comp the comparator to be used, null for natural ordering
|
||||
* @throws NullPointerException when element1 is null.
|
||||
* @throws NullPointerException when element2 is null.
|
||||
*/
|
||||
|
|
|
@ -74,7 +74,6 @@ public final class IntegerRange extends NumberRange<Integer> {
|
|||
*
|
||||
* @param number1 the first element, not null
|
||||
* @param number2 the second element, not null
|
||||
* @param comp the comparator to be used, null for natural ordering
|
||||
* @throws NullPointerException when element1 is null.
|
||||
* @throws NullPointerException when element2 is null.
|
||||
*/
|
||||
|
|
|
@ -74,7 +74,6 @@ public final class LongRange extends NumberRange<Long> {
|
|||
*
|
||||
* @param number1 the first element, not null
|
||||
* @param number2 the second element, not null
|
||||
* @param comp the comparator to be used, null for natural ordering
|
||||
* @throws NullPointerException when element1 is null.
|
||||
* @throws NullPointerException when element2 is null.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue