Remove useless inline comments

This commit is contained in:
Gary Gregory 2022-07-05 10:12:57 -04:00
parent 28b11d15e7
commit 827f5c93df
3 changed files with 0 additions and 12 deletions

View File

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

View File

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

View File

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