Enable checkstyle OneStatementPerLine

This commit is contained in:
Evan Harris
2019-08-08 21:26:01 +00:00
committed by jvoisin
parent 153ad19b6b
commit 86a5b8708d
2 changed files with 3 additions and 1 deletions
@@ -27,7 +27,8 @@ public class JWTRequestParameterProcessingFilter implements Filter {
private final AuthenticationFailureHandler failureHandler;
protected JWTRequestParameterProcessingFilter(AuthenticationManager authenticationManager, String failureUrl) {
this.authenticationManager = authenticationManager; failureHandler = new SimpleUrlAuthenticationFailureHandler(failureUrl);
this.authenticationManager = authenticationManager;
failureHandler = new SimpleUrlAuthenticationFailureHandler(failureUrl);
}
public Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response) throws AuthenticationException, IOException, ServletException {
+1
View File
@@ -31,6 +31,7 @@
<module name="EqualsHashCode"/>
<module name="Indentation"/>
<module name="InnerAssignment"/>
<module name="OneStatementPerLine"/>
<module name="ParenPadCheck"/>
<module name="RedundantImport"/>
<module name="StringLiteralEquality"/>