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:27 UTC

[10/17] incubator-guacamole-client git commit: GUACAMOLE-364: revert unnecessary code simplification

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.


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/beac46bf
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/tree/beac46bf
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/diff/beac46bf

Branch: refs/heads/master
Commit: beac46bff5e3070d931e5f5577a095f8edcdb070
Parents: 10bc443
Author: Carl Harris <ce...@vt.edu>
Authored: Thu Aug 17 05:25:51 2017 -0400
Committer: Carl Harris <ce...@vt.edu>
Committed: Thu Aug 17 05:25:51 2017 -0400

----------------------------------------------------------------------
 .../java/org/apache/guacamole/rest/auth/AuthenticationService.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-guacamole-client/blob/beac46bf/guacamole/src/main/java/org/apache/guacamole/rest/auth/AuthenticationService.java
----------------------------------------------------------------------
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 8760b73..cca2845 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())