diff --git a/src/main/java/org/apache/commons/lang3/ClassUtils.java b/src/main/java/org/apache/commons/lang3/ClassUtils.java index 2384c0ea2..78dde9aaa 100644 --- a/src/main/java/org/apache/commons/lang3/ClassUtils.java +++ b/src/main/java/org/apache/commons/lang3/ClassUtils.java @@ -531,7 +531,7 @@ public class ClassUtils { * The class to query or null. * @return true if the given {@code type} is a primitive or primitive wrapper ({@link Boolean}, {@link Byte}, {@link Character}, * {@link Short}, {@link Integer}, {@link Long}, {@link Double}, {@link Float}). - * @since 3.0.2 + * @since 3.1 */ public static boolean isPrimitiveOrWrapper(Class> type) { if (type == null) { @@ -548,7 +548,7 @@ public class ClassUtils { * The class to query or null. * @return true if the given {@code type} is a primitive wrapper ({@link Boolean}, {@link Byte}, {@link Character}, {@link Short}, * {@link Integer}, {@link Long}, {@link Double}, {@link Float}). - * @since 3.0.2 + * @since 3.1 */ public static boolean isPrimitiveWrapper(Class> type) { return wrapperPrimitiveMap.containsKey(type); diff --git a/src/main/java/org/apache/commons/lang3/SystemUtils.java b/src/main/java/org/apache/commons/lang3/SystemUtils.java index bb43eca41..0914b4db8 100644 --- a/src/main/java/org/apache/commons/lang3/SystemUtils.java +++ b/src/main/java/org/apache/commons/lang3/SystemUtils.java @@ -1009,7 +1009,7 @@ public class SystemUtils { * The field will return {@code false} if {@code OS_NAME} is {@code null}. *
* - * @since 3.0.2 + * @since 3.1 */ public static final boolean IS_OS_FREE_BSD = getOSMatchesName("FreeBSD"); @@ -1021,7 +1021,7 @@ public class SystemUtils { * The field will return {@code false} if {@code OS_NAME} is {@code null}. * * - * @since 3.0.2 + * @since 3.1 */ public static final boolean IS_OS_OPEN_BSD = getOSMatchesName("OpenBSD"); @@ -1033,7 +1033,7 @@ public class SystemUtils { * The field will return {@code false} if {@code OS_NAME} is {@code null}. * * - * @since 3.0.2 + * @since 3.1 */ public static final boolean IS_OS_NET_BSD = getOSMatchesName("NetBSD"); diff --git a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java index ec6fc8445..eb5259e2e 100644 --- a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java +++ b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java @@ -666,7 +666,7 @@ public class NumberUtils { /** *Convert a String
to a Long
;
- * since 3.0.2 it handles hex and octal notations.
Returns null
if the string is null
.