Polish UsernamePasswordAuthenticationFilter method
Closes gh-10970
This commit is contained in:
parent
92a385ed05
commit
90fe1b3a69
|
@ -75,8 +75,7 @@ public class UsernamePasswordAuthenticationFilter extends AbstractAuthentication
|
|||
throw new AuthenticationServiceException("Authentication method not supported: " + request.getMethod());
|
||||
}
|
||||
String username = obtainUsername(request);
|
||||
username = (username != null) ? username : "";
|
||||
username = username.trim();
|
||||
username = (username != null) ? username.trim() : "";
|
||||
String password = obtainPassword(request);
|
||||
password = (password != null) ? password : "";
|
||||
UsernamePasswordAuthenticationToken authRequest = UsernamePasswordAuthenticationToken.unauthenticated(username,
|
||||
|
|
Loading…
Reference in New Issue