Remove logging fields from annotations. (Okay with 1.7u9, not with 1.7u21)
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/8186b5a1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/8186b5a1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/8186b5a1 Branch: refs/heads/execwork Commit: 8186b5a1ac8b380234c85a65d54884ab794d7f92 Parents: f001321 Author: Jacques Nadeau <[email protected]> Authored: Fri Jul 19 18:06:38 2013 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Fri Jul 19 18:10:02 2013 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/drill/exec/expr/annotations/Output.java | 4 ---- .../main/java/org/apache/drill/exec/expr/annotations/Param.java | 1 - 2 files changed, 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/8186b5a1/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Output.java ---------------------------------------------------------------------- diff --git a/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Output.java b/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Output.java index 2d77dfc..d45f726 100644 --- a/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Output.java +++ b/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Output.java @@ -11,8 +11,4 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD}) public @interface Output { - static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(Output.class); - - - } http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/8186b5a1/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Param.java ---------------------------------------------------------------------- diff --git a/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Param.java b/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Param.java index 9ba7611..87aac57 100644 --- a/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Param.java +++ b/sandbox/prototype/exec/java-exec/src/main/java/org/apache/drill/exec/expr/annotations/Param.java @@ -14,5 +14,4 @@ import org.apache.drill.common.types.TypeProtos.MinorType; @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.FIELD}) public @interface Param { - static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(Param.class); }
