mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
GUACAMOLE-364: fixed misspelled instance variable name
This commit is contained in:
@@ -95,7 +95,7 @@ public class ExtensionModule extends ServletModule {
|
|||||||
/**
|
/**
|
||||||
* All currently-bound authentication providers, if any.
|
* All currently-bound authentication providers, if any.
|
||||||
*/
|
*/
|
||||||
private final List<Listener> boundListners =
|
private final List<Listener> boundListeners =
|
||||||
new ArrayList<Listener>();
|
new ArrayList<Listener>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -205,8 +205,8 @@ public class ExtensionModule extends ServletModule {
|
|||||||
private void bindListeners(Class<?> providerClass) {
|
private void bindListeners(Class<?> providerClass) {
|
||||||
|
|
||||||
logger.debug("[{}] Binding listeners \"{}\".",
|
logger.debug("[{}] Binding listeners \"{}\".",
|
||||||
boundListners.size(), providerClass.getName());
|
boundListeners.size(), providerClass.getName());
|
||||||
boundListners.addAll(ListenerFactory.createListeners(providerClass));
|
boundListeners.addAll(ListenerFactory.createListeners(providerClass));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -234,7 +234,7 @@ public class ExtensionModule extends ServletModule {
|
|||||||
*/
|
*/
|
||||||
@Provides
|
@Provides
|
||||||
public List<Listener> getListeners() {
|
public List<Listener> getListeners() {
|
||||||
return Collections.unmodifiableList(boundListners);
|
return Collections.unmodifiableList(boundListeners);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user