Fix simple broken javadoc. (#981)

This commit is contained in:
Arturo Bernal 2022-10-23 18:47:34 +02:00 committed by GitHub
parent 1c1e482e5a
commit a1e911a935
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 4 deletions

View File

@ -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
*/

View File

@ -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.
*/

View File

@ -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.
*/

View File

@ -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.
*/