Skip to content

Commit ac8ce6d

Browse files
committed
code cleanup
1 parent 73b7015 commit ac8ce6d

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/java/org/logstash/javaapi/JavaInputExample.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,8 @@ public class JavaInputExample implements Input {
2727
private final CountDownLatch done = new CountDownLatch(1);
2828
private volatile boolean stopped;
2929

30-
static {
31-
System.out.println("JavaInputExample static initializer");
32-
}
33-
3430
// all plugins must provide a constructor that accepts Configuration and Context
3531
public JavaInputExample(Configuration config, Context context) {
36-
System.out.println("JavaInputExample constructor");
3732
// constructors should validate configuration options
3833
if (config.contains(EVENT_COUNT_CONFIG)) {
3934
Object o = config.get(EVENT_COUNT_CONFIG);

0 commit comments

Comments
 (0)