mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-13 05:25:20 +00:00
fix javadoc (#545)
This commit is contained in:
parent
a21cdb5121
commit
8e61b090ce
@ -669,7 +669,7 @@ public class SystemUtils {
|
||||
* sync with that System property.
|
||||
* </p>
|
||||
*
|
||||
* @deprecated Use {@link System#lineSeparator} instead, since it does not require a privilege check.
|
||||
* @deprecated Use {@link System#lineSeparator()} instead, since it does not require a privilege check.
|
||||
* @since Java 1.1
|
||||
*/
|
||||
@Deprecated
|
||||
|
@ -983,8 +983,8 @@ public static <A extends Annotation> A getAnnotation(final Method method, final
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Gets a combination of {@link ClassUtils#getAllSuperclasses}(Class)} and
|
||||
* {@link ClassUtils#getAllInterfaces}(Class)}, one from superclasses, one
|
||||
* <p>Gets a combination of {@link ClassUtils#getAllSuperclasses(Class)} and
|
||||
* {@link ClassUtils#getAllInterfaces(Class)}, one from superclasses, one
|
||||
* from interfaces, and so on in a breadth first way.</p>
|
||||
*
|
||||
* @param cls the class to look up, may be {@code null}
|
||||
|
@ -88,7 +88,7 @@ public void testEscapeJavaWithSlash() {
|
||||
final String expected = input;
|
||||
final String actual = StringEscapeUtils.escapeJava(input);
|
||||
|
||||
/**
|
||||
/*
|
||||
* In 2.4 StringEscapeUtils.escapeJava(String) escapes '/' characters, which are not a valid character to escape
|
||||
* in a Java string.
|
||||
*/
|
||||
|
@ -592,7 +592,6 @@ public void testTruncateSecond() throws Exception {
|
||||
/**
|
||||
* Test DateUtils.truncate()-method with Calendar.SECOND
|
||||
*
|
||||
* @throws Exception so we don't have to catch it
|
||||
* @since 3.0
|
||||
*/
|
||||
@Test
|
||||
|
Loading…
x
Reference in New Issue
Block a user