aboutsummaryrefslogtreecommitdiff
path: root/usage_examples
diff options
context:
space:
mode:
Diffstat (limited to 'usage_examples')
-rw-r--r--usage_examples/LogExample_post.jpage8
-rw-r--r--usage_examples/LogExample_pre.jpage8
2 files changed, 0 insertions, 16 deletions
diff --git a/usage_examples/LogExample_post.jpage b/usage_examples/LogExample_post.jpage
index cbdc5a9e..2ec7f223 100644
--- a/usage_examples/LogExample_post.jpage
+++ b/usage_examples/LogExample_post.jpage
@@ -5,11 +5,3 @@ public class LogExample {
log.error("Something's wrong here");
}
}
-
-public class LogExampleOther {
- private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(java.util.List.class);
-
- public static void main(String... args) {
- log.warn("Something might be wrong here");
- }
-}
diff --git a/usage_examples/LogExample_pre.jpage b/usage_examples/LogExample_pre.jpage
index 7ab64cd4..afabf369 100644
--- a/usage_examples/LogExample_pre.jpage
+++ b/usage_examples/LogExample_pre.jpage
@@ -7,11 +7,3 @@ public class LogExample {
log.error("Something's wrong here");
}
}
-
-@Log(java.util.List.class)
-public class LogExampleOther {
-
- public static void main(String... args) {
- log.warn("Something might be wrong here");
- }
-}