diff options
Diffstat (limited to 'src/core/lombok/extern')
-rw-r--r-- | src/core/lombok/extern/apachecommons/Log.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/jul/Log.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/log4j/Log.java | 2 | ||||
-rw-r--r-- | src/core/lombok/extern/slf4j/Log.java | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/src/core/lombok/extern/apachecommons/Log.java b/src/core/lombok/extern/apachecommons/Log.java index 2afc2a6e..4c82a2a7 100644 --- a/src/core/lombok/extern/apachecommons/Log.java +++ b/src/core/lombok/extern/apachecommons/Log.java @@ -70,8 +70,6 @@ import java.lang.annotation.Target; public @interface Log { /** * If you do not want to use the annotated class as the logger parameter, you can specify an alternate class here. - * <br /> - * NB: If {@code void.class} is passed, it will be considered the same as specifying no parameter. */ Class<?> value() default void.class; }
\ No newline at end of file diff --git a/src/core/lombok/extern/jul/Log.java b/src/core/lombok/extern/jul/Log.java index c2e7428e..a66db671 100644 --- a/src/core/lombok/extern/jul/Log.java +++ b/src/core/lombok/extern/jul/Log.java @@ -70,8 +70,6 @@ import java.lang.annotation.Target; public @interface Log { /** * If you do not want to use the annotated class as the logger parameter, you can specify an alternate class here. - * <br /> - * NB: If {@code void.class} is passed, it will be considered the same as specifying no parameter. */ Class<?> value() default void.class; }
\ No newline at end of file diff --git a/src/core/lombok/extern/log4j/Log.java b/src/core/lombok/extern/log4j/Log.java index e5fcbba0..151b5e98 100644 --- a/src/core/lombok/extern/log4j/Log.java +++ b/src/core/lombok/extern/log4j/Log.java @@ -70,8 +70,6 @@ import java.lang.annotation.Target; public @interface Log { /** * If you do not want to use the annotated class as the logger parameter, you can specify an alternate class here. - * <br /> - * NB: If {@code void.class} is passed, it will be considered the same as specifying no parameter. */ Class<?> value() default void.class; }
\ No newline at end of file diff --git a/src/core/lombok/extern/slf4j/Log.java b/src/core/lombok/extern/slf4j/Log.java index 306ade16..5431847a 100644 --- a/src/core/lombok/extern/slf4j/Log.java +++ b/src/core/lombok/extern/slf4j/Log.java @@ -69,8 +69,6 @@ import java.lang.annotation.Target; public @interface Log { /** * If you do not want to use the annotated class as the logger parameter, you can specify an alternate class here. - * <br /> - * NB: If {@code void.class} is passed, it will be considered the same as specifying no parameter. */ Class<?> value() default void.class; } |