diff options
Diffstat (limited to 'src/core/lombok/extern')
-rw-r--r-- | src/core/lombok/extern/apachecommons/CommonsLog.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/java/Log.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/log4j/Log4j.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/log4j/Log4j2.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/slf4j/Slf4j.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/slf4j/XSlf4j.java | 1 |
6 files changed, 7 insertions, 4 deletions
diff --git a/src/core/lombok/extern/apachecommons/CommonsLog.java b/src/core/lombok/extern/apachecommons/CommonsLog.java index 2e31edf7..45345098 100644 --- a/src/core/lombok/extern/apachecommons/CommonsLog.java +++ b/src/core/lombok/extern/apachecommons/CommonsLog.java @@ -63,4 +63,4 @@ public @interface CommonsLog { * Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed. */ String topic() default ""; -}
\ No newline at end of file +} diff --git a/src/core/lombok/extern/java/Log.java b/src/core/lombok/extern/java/Log.java index f8cbf03f..bac2742e 100644 --- a/src/core/lombok/extern/java/Log.java +++ b/src/core/lombok/extern/java/Log.java @@ -62,4 +62,4 @@ public @interface Log { * Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed. */ String topic() default ""; -}
\ No newline at end of file +} diff --git a/src/core/lombok/extern/log4j/Log4j.java b/src/core/lombok/extern/log4j/Log4j.java index d3164047..9490acb8 100644 --- a/src/core/lombok/extern/log4j/Log4j.java +++ b/src/core/lombok/extern/log4j/Log4j.java @@ -63,4 +63,4 @@ public @interface Log4j { * Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed. */ String topic() default ""; -}
\ No newline at end of file +} diff --git a/src/core/lombok/extern/log4j/Log4j2.java b/src/core/lombok/extern/log4j/Log4j2.java index 0267d98c..43125e6b 100644 --- a/src/core/lombok/extern/log4j/Log4j2.java +++ b/src/core/lombok/extern/log4j/Log4j2.java @@ -63,4 +63,4 @@ public @interface Log4j2 { * Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed. */ String topic() default ""; -}
\ No newline at end of file +} diff --git a/src/core/lombok/extern/slf4j/Slf4j.java b/src/core/lombok/extern/slf4j/Slf4j.java index 5d6e7d8c..04df6498 100644 --- a/src/core/lombok/extern/slf4j/Slf4j.java +++ b/src/core/lombok/extern/slf4j/Slf4j.java @@ -25,6 +25,7 @@ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; + /** * Causes lombok to generate a logger field. * <p> @@ -62,3 +63,4 @@ public @interface Slf4j { */ String topic() default ""; } + diff --git a/src/core/lombok/extern/slf4j/XSlf4j.java b/src/core/lombok/extern/slf4j/XSlf4j.java index 0f2efe26..8a311c79 100644 --- a/src/core/lombok/extern/slf4j/XSlf4j.java +++ b/src/core/lombok/extern/slf4j/XSlf4j.java @@ -25,6 +25,7 @@ import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; + /** * Causes lombok to generate a logger field. * <p> |