We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73b7015 commit ac8ce6dCopy full SHA for ac8ce6d
src/main/java/org/logstash/javaapi/JavaInputExample.java
@@ -27,13 +27,8 @@ public class JavaInputExample implements Input {
27
private final CountDownLatch done = new CountDownLatch(1);
28
private volatile boolean stopped;
29
30
- static {
31
-System.out.println("JavaInputExample static initializer");
32
- }
33
-
34
// all plugins must provide a constructor that accepts Configuration and Context
35
public JavaInputExample(Configuration config, Context context) {
36
-System.out.println("JavaInputExample constructor");
37
// constructors should validate configuration options
38
if (config.contains(EVENT_COUNT_CONFIG)) {
39
Object o = config.get(EVENT_COUNT_CONFIG);
0 commit comments