From beac46bff5e3070d931e5f5577a095f8edcdb070 Mon Sep 17 00:00:00 2001 From: Carl Harris Date: Thu, 17 Aug 2017 05:25:51 -0400 Subject: [PATCH] GUACAMOLE-364: revert unnecessary code simplification This change isn't necessary to the stated issue. The expression here is unnecessarily complex but that should be addressed in another issue. --- .../org/apache/guacamole/rest/auth/AuthenticationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/java/org/apache/guacamole/rest/auth/AuthenticationService.java b/guacamole/src/main/java/org/apache/guacamole/rest/auth/AuthenticationService.java index 8760b7363..cca284524 100644 --- a/guacamole/src/main/java/org/apache/guacamole/rest/auth/AuthenticationService.java +++ b/guacamole/src/main/java/org/apache/guacamole/rest/auth/AuthenticationService.java @@ -295,7 +295,7 @@ public class AuthenticationService { } // Otherwise, attempt authentication as a new user - AuthenticatedUser authenticatedUser = authenticateUser(credentials); + AuthenticatedUser authenticatedUser = AuthenticationService.this.authenticateUser(credentials); notifyAuthenticationSuccessListeners(authenticatedUser, null); if (logger.isInfoEnabled())