You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2017/10/06 16:51:31 UTC

[14/17] incubator-guacamole-client git commit: GUACAMOLE-364: fixed misspelled instance variable name

GUACAMOLE-364: fixed misspelled instance variable name


Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/commit/2bdf4920
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/2bdf4920
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/2bdf4920

Branch: refs/heads/master
Commit: 2bdf49205cb260576959d6be0598dc58c4e6fbb8
Parents: f05b108
Author: Carl Harris <ce...@vt.edu>
Authored: Mon Sep 25 06:18:43 2017 -0400
Committer: Carl Harris <ce...@vt.edu>
Committed: Mon Sep 25 06:18:43 2017 -0400

----------------------------------------------------------------------
 .../java/org/apache/guacamole/extension/ExtensionModule.java | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/2bdf4920/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
----------------------------------------------------------------------
diff --git a/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java b/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
index f3ca700..e7cdedb 100644
--- a/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
+++ b/guacamole/src/main/java/org/apache/guacamole/extension/ExtensionModule.java
@@ -95,7 +95,7 @@ public class ExtensionModule extends ServletModule {
     /**
      * All currently-bound authentication providers, if any.
      */
-    private final List<Listener> boundListners =
+    private final List<Listener> boundListeners =
             new ArrayList<Listener>();
 
     /**
@@ -205,8 +205,8 @@ public class ExtensionModule extends ServletModule {
     private void bindListeners(Class<?> providerClass) {
 
         logger.debug("[{}] Binding listeners \"{}\".",
-                boundListners.size(), providerClass.getName());
-        boundListners.addAll(ListenerFactory.createListeners(providerClass));
+                boundListeners.size(), providerClass.getName());
+        boundListeners.addAll(ListenerFactory.createListeners(providerClass));
 
     }
 
@@ -234,7 +234,7 @@ public class ExtensionModule extends ServletModule {
      */
     @Provides
     public List<Listener> getListeners() {
-        return Collections.unmodifiableList(boundListners);
+        return Collections.unmodifiableList(boundListeners);
     }
 
     /**