aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/extern
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2010-11-07 02:49:01 +0100
committerRoel Spilker <r.spilker@gmail.com>2010-11-07 02:49:01 +0100
commit1f0db1191a7fcc35aaeab1481a806201a450d797 (patch)
treeddd7bb2a77a016892cada99f4a53c1abfc1f607a /src/core/lombok/extern
parent50524f338ef1f29a1848a2f2d542d6b7317c5eff (diff)
downloadlombok-1f0db1191a7fcc35aaeab1481a806201a450d797.tar.gz
lombok-1f0db1191a7fcc35aaeab1481a806201a450d797.tar.bz2
lombok-1f0db1191a7fcc35aaeab1481a806201a450d797.zip
Use the actual annotation value to process the @Log annotations instead of their String representations.
Diffstat (limited to 'src/core/lombok/extern')
-rw-r--r--src/core/lombok/extern/apachecommons/Log.java2
-rw-r--r--src/core/lombok/extern/jul/Log.java2
-rw-r--r--src/core/lombok/extern/log4j/Log.java2
-rw-r--r--src/core/lombok/extern/slf4j/Log.java2
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;
}