Skip to content

Commit f0e183b

Browse files
committed
Remove invalid javadoc links
Links were removed due to following reasons: dependency commons-lang3 not containing docs sources; package sun.reflect.Reflection was deprecated and removed in JDK8
1 parent a3cf7d8 commit f0e183b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

log4j-core/src/main/java/org/apache/logging/log4j/core/impl/ExtendedClassInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class ExtendedClassInfo implements Serializable {
3838
/**
3939
* Constructs a new instance.
4040
*
41-
* @param exact Whether the class was obtained via {@link sun.reflect.Reflection#getCallerClass(int)}.
41+
* @param exact Whether the class was obtained via {@code sun.reflect.Reflection#getCallerClass(int)}.
4242
* @param location a classpath element or a jar
4343
* @param version the string describing a version
4444
*/

log4j-core/src/main/java/org/apache/logging/log4j/core/impl/ExtendedStackTraceElement.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Complements a StackTraceElement with:
2929
* </p>
3030
* <ul>
31-
* <li>exact: whether the class was obtained via {@link sun.reflect.Reflection#getCallerClass(int)}</li>
31+
* <li>exact: whether the class was obtained via {@code sun.reflect.Reflection#getCallerClass(int)}</li>
3232
* <li>location: a classpath element or a jar</li>
3333
* <li>version</li>
3434
* </ul>

log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateParser.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,8 @@ public Object parseObject(final String source, final ParsePosition pos) {
392392
* given by {@link ParsePosition#getIndex()} has been updated. If the input buffer has been fully
393393
* parsed, then the index will point to just after the end of the input buffer.
394394
*
395-
* @see org.apache.commons.lang3.time.DateParser#parse(java.lang.String, java.text.ParsePosition)
395+
* @see <a href="https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/time/DateParser.html#parse-java.lang.String-java.text.ParsePosition-">
396+
* org.apache.commons.lang3.time.DateParser#parse(String, ParsePosition)</a>
396397
*/
397398
@Override
398399
public Date parse(final String source, final ParsePosition pos) {

0 commit comments

Comments
 (0)