From 1f0db1191a7fcc35aaeab1481a806201a450d797 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Sun, 7 Nov 2010 02:49:01 +0100 Subject: Use the actual annotation value to process the @Log annotations instead of their String representations. --- src/core/lombok/extern/log4j/Log.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/core/lombok/extern/log4j/Log.java') 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. - *
- * 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 -- cgit