X-Git-Url: https://git.pterodactylus.net/?p=sonitus.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsonitus%2Fdata%2Ffilter%2FLameMp3Decoder.java;h=7493b3e1d0d7f772b743182c6687938eec71e641;hp=17e097384ece849b7805f392f19350756ea6c422;hb=cbeadf6d9eea57ab98cacd60e2419dd3c18bef89;hpb=87436ac0b103a112722c1df835e11ec928e57d38 diff --git a/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Decoder.java b/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Decoder.java index 17e0973..7493b3e 100644 --- a/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Decoder.java +++ b/src/main/java/net/pterodactylus/sonitus/data/filter/LameMp3Decoder.java @@ -20,7 +20,6 @@ package net.pterodactylus.sonitus.data.filter; import net.pterodactylus.sonitus.data.Metadata; import com.google.common.collect.ImmutableList; -import com.google.common.eventbus.EventBus; /** * {@link ExternalMp3Decoder} implementation that uses LAME to decode an MP3. @@ -38,13 +37,11 @@ public class LameMp3Decoder extends ExternalMp3Decoder { /** * Creates a new LAME MP3 decoder. * - * @param eventBus - * The event bus * @param binary * The location of the binary */ - public LameMp3Decoder(EventBus eventBus, String binary) { - super(eventBus, "LAME Decoder"); + public LameMp3Decoder(String binary) { + super("LAME Decoder"); this.binary = binary; }