Remove useless inline comments
This commit is contained in:
parent
28b11d15e7
commit
827f5c93df
|
@ -1561,7 +1561,6 @@ public class SystemUtils {
|
|||
*/
|
||||
public static final boolean IS_OS_WINDOWS_XP = getOsMatchesName(OS_NAME_WINDOWS_PREFIX + " XP");
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
/**
|
||||
* <p>
|
||||
* Is {@code true} if this is Windows Vista.
|
||||
|
@ -1751,7 +1750,6 @@ public class SystemUtils {
|
|||
return isOSNameMatch(OS_NAME, osNamePrefix);
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
/**
|
||||
* <p>
|
||||
* Gets a System property, defaulting to {@code null} if the property cannot be read.
|
||||
|
@ -1957,7 +1955,6 @@ public class SystemUtils {
|
|||
return true;
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
/**
|
||||
* <p>
|
||||
* SystemUtils instances should NOT be constructed in standard programming. Instead, the class should be used as
|
||||
|
|
|
@ -220,9 +220,6 @@ public class Validate {
|
|||
return Objects.requireNonNull(object, () -> String.format(message, values));
|
||||
}
|
||||
|
||||
// notEmpty array
|
||||
//---------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* <p>Validate that the specified argument array is neither {@code null}
|
||||
* nor a length of zero (no elements); otherwise throwing an exception
|
||||
|
@ -1041,9 +1038,6 @@ public class Validate {
|
|||
}
|
||||
}
|
||||
|
||||
// exclusiveBetween
|
||||
//---------------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* <p>Validate that the specified argument object fall between the two
|
||||
* exclusive values specified; otherwise, throws an exception.</p>
|
||||
|
|
|
@ -23,12 +23,9 @@ package org.apache.commons.lang3.exception;
|
|||
* @since 3.0
|
||||
*/
|
||||
public class CloneFailedException extends RuntimeException {
|
||||
// ~ Static fields/initializers ---------------------------------------------
|
||||
|
||||
private static final long serialVersionUID = 20091223L;
|
||||
|
||||
// ~ Constructors -----------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Constructs a CloneFailedException.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue