Move event and metadata handling into abstract base class.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / ExternalFilter.java
index a6e2966..990f976 100644 (file)
@@ -27,7 +27,6 @@ import net.pterodactylus.sonitus.io.InputStreamDrainer;
 
 import com.google.common.collect.ImmutableList;
 import com.google.common.collect.Iterables;
-import com.google.common.eventbus.EventBus;
 
 /**
  * {@link net.pterodactylus.sonitus.data.Filter} implementation that runs its
@@ -46,13 +45,11 @@ public abstract class ExternalFilter extends DummyFilter {
        /**
         * Creates a new external filter with the given name.
         *
-        * @param eventBus
-        *              The event bus
         * @param name
         *              The name of the filter
         */
-       protected ExternalFilter(EventBus eventBus, String name) {
-               super(eventBus, name);
+       protected ExternalFilter(String name) {
+               super(name);
        }
 
        //