X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Futil%2Fevent%2FFixedSourceListenerManager.java;h=8915dd2caf8d0e18293d3a6bd00b0322ad4837b2;hb=a8bc3ffc9cf0cb7f18bc9dde44825e948ed3add2;hp=3484a43da118077bb453333bf78cf84c56fcf65f;hpb=90c1235db92906ebe8c3ccc1b160f7fb4d2b2302;p=jSite2.git diff --git a/src/net/pterodactylus/util/event/FixedSourceListenerManager.java b/src/net/pterodactylus/util/event/FixedSourceListenerManager.java index 3484a43..8915dd2 100644 --- a/src/net/pterodactylus/util/event/FixedSourceListenerManager.java +++ b/src/net/pterodactylus/util/event/FixedSourceListenerManager.java @@ -30,18 +30,18 @@ import java.util.EventListener; * The type of the listeners * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ -public class FixedSourceListenerSupport extends ListenerSupport { +public class FixedSourceListenerManager extends ListenerManager { /** The source of the events. */ private final S source; /** - * Creates a new listener support. + * Creates a new listener manager. * * @param source * The source of all events */ - public FixedSourceListenerSupport(S source) { + public FixedSourceListenerManager(S source) { this.source = source; }