Changing @since 3.0.2 to @since 3.1
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1199816 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2e03203d40
commit
163731256b
|
@ -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);
|
||||
|
|
|
@ -1009,7 +1009,7 @@ public class SystemUtils {
|
|||
* The field will return {@code false} if {@code OS_NAME} is {@code null}.
|
||||
* </p>
|
||||
*
|
||||
* @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}.
|
||||
* </p>
|
||||
*
|
||||
* @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}.
|
||||
* </p>
|
||||
*
|
||||
* @since 3.0.2
|
||||
* @since 3.1
|
||||
*/
|
||||
public static final boolean IS_OS_NET_BSD = getOSMatchesName("NetBSD");
|
||||
|
||||
|
|
|
@ -666,7 +666,7 @@ public class NumberUtils {
|
|||
|
||||
/**
|
||||
* <p>Convert a <code>String</code> to a <code>Long</code>;
|
||||
* since 3.0.2 it handles hex and octal notations.</p>
|
||||
* since 3.1 it handles hex and octal notations.</p>
|
||||
*
|
||||
* <p>Returns <code>null</code> if the string is <code>null</code>.</p>
|
||||
*
|
||||
|
|
|
@ -45,7 +45,7 @@ import org.junit.Test;
|
|||
*
|
||||
* @see <a href="https://issues.apache.org/jira/browse/LANG-762">[LANG-762] Handle or document ReflectionToStringBuilder
|
||||
* and ToStringBuilder for collections that are not thread safe</a>
|
||||
* @since 3.0.2
|
||||
* @since 3.1
|
||||
* @version $Id$
|
||||
*/
|
||||
public class ReflectionToStringBuilderConcurrencyTest {
|
||||
|
|
|
@ -32,7 +32,7 @@ import org.junit.Test;
|
|||
*
|
||||
* @see <a href="https://issues.apache.org/jira/browse/LANG-762">[LANG-762] Handle or document ReflectionToStringBuilder
|
||||
* and ToStringBuilder for collections that are not thread safe</a>
|
||||
* @since 3.0.2
|
||||
* @since 3.1
|
||||
* @version $Id$
|
||||
*/
|
||||
public class ReflectionToStringBuilderMutateInspectConcurrencyTest {
|
||||
|
|
|
@ -42,7 +42,7 @@ import org.junit.Test;
|
|||
*
|
||||
* @see <a href="https://issues.apache.org/jira/browse/LANG-762">[LANG-762] Handle or document ReflectionToStringBuilder
|
||||
* and ToStringBuilder for collections that are not thread safe</a>
|
||||
* @since 3.0.2
|
||||
* @since 3.1
|
||||
* @version $Id$
|
||||
*/
|
||||
public class ToStringStyleConcurrencyTest {
|
||||
|
|
Loading…
Reference in New Issue