From 5edb6ce5e10d40572a6a760902a415264c9a485e Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 12 Jun 2017 23:39:36 +0200 Subject: Javadoc now builds without warnings. All links to external javadoc replaced with straight up links to avoid the target from trying to download a bunch of index pages. --- src/core/lombok/extern/java/Log.java | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/core/lombok/extern/java') diff --git a/src/core/lombok/extern/java/Log.java b/src/core/lombok/extern/java/Log.java index 3d50b88c..553b7c4a 100644 --- a/src/core/lombok/extern/java/Log.java +++ b/src/core/lombok/extern/java/Log.java @@ -46,9 +46,9 @@ import java.lang.annotation.Target; * } * * - * This annotation is valid for classes and enumerations.
- * @see java.util.logging.Logger java.util.logging.Logger - * @see java.util.logging.Logger#getLogger(java.lang.String) java.util.logging.Logger.getLogger(String name) + * This annotation is valid for classes and enumerations.
+ * @see java.util.logging.Logger + * @see java.util.logging.Logger#getLogger(java.lang.String) * @see lombok.extern.apachecommons.CommonsLog @CommonsLog * @see lombok.extern.log4j.Log4j @Log4j * @see lombok.extern.log4j.Log4j2 @Log4j2 @@ -59,8 +59,6 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.SOURCE) @Target(ElementType.TYPE) public @interface Log { - /** - * Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed. - */ + /** @return The category of the constructed Logger. By default, it will use the type where the annotation is placed. */ String topic() default ""; } -- cgit