Enable checkstyle OneStatementPerLine
This commit is contained in:
+2
-1
@@ -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 {
|
||||
|
||||
@@ -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"/>
|
||||
|
||||
Reference in New Issue
Block a user