From e7ec3399c65eea4ccfc34ff65035f264d6e2d2ee Mon Sep 17 00:00:00 2001 From: James Muehlner Date: Thu, 8 Aug 2013 20:53:26 -0700 Subject: [PATCH] Ticket #263: Changed name to activeConnectionMap. --- .../guacamole/net/auth/mysql/MySQLAuthenticationProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/guacamole-auth-mysql/src/main/java/net/sourceforge/guacamole/net/auth/mysql/MySQLAuthenticationProvider.java b/extensions/guacamole-auth-mysql/src/main/java/net/sourceforge/guacamole/net/auth/mysql/MySQLAuthenticationProvider.java index 25b31276a..2bf2e69fb 100644 --- a/extensions/guacamole-auth-mysql/src/main/java/net/sourceforge/guacamole/net/auth/mysql/MySQLAuthenticationProvider.java +++ b/extensions/guacamole-auth-mysql/src/main/java/net/sourceforge/guacamole/net/auth/mysql/MySQLAuthenticationProvider.java @@ -81,7 +81,7 @@ public class MySQLAuthenticationProvider implements AuthenticationProvider { /** * Set of all active connections. */ - private ActiveConnectionMap activeConnectionSet = new ActiveConnectionMap(); + private ActiveConnectionMap activeConnectionMap = new ActiveConnectionMap(); /** * Injector which will manage the object graph of this authentication @@ -175,7 +175,7 @@ public class MySQLAuthenticationProvider implements AuthenticationProvider { bind(ConnectionService.class); bind(ConnectionGroupService.class); bind(UserService.class); - bind(ActiveConnectionMap.class).toInstance(activeConnectionSet); + bind(ActiveConnectionMap.class).toInstance(activeConnectionMap); } } // end of mybatis module