mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 17:13:21 +00:00 
			
		
		
		
	GUACAMOLE-195: Fix style issues with if statements.
This commit is contained in:
		| @@ -69,11 +69,11 @@ public class AuthenticationProviderService { | ||||
|  | ||||
|         // Pull HTTP header from request if present | ||||
|         HttpServletRequest request = credentials.getRequest(); | ||||
|         if(request != null) { | ||||
|         if (request != null) { | ||||
|             // Get the username from the header configured in guacamole.properties | ||||
|             String username = request.getHeader(confService.getHttpAuthHeader()); | ||||
|  | ||||
|             if(username != null) { | ||||
|             if (username != null) { | ||||
|                 AuthenticatedUser authenticatedUser = authenticatedUserProvider.get(); | ||||
|                 authenticatedUser.init(username, credentials); | ||||
|                 return authenticatedUser; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user