fix checkstyle

This commit is contained in:
Lars Grefer 2019-08-09 02:46:20 +02:00
parent 50b4883756
commit b388976ac8
4 changed files with 2 additions and 6 deletions

View File

@ -13,7 +13,6 @@
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
package org.springframework.security.crypto.bcrypt;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.util.Arrays;

View File

@ -17,7 +17,6 @@ package org.springframework.security.test.web.servlet.request;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import java.security.cert.CertificateException;
import java.security.cert.CertificateFactory;

View File

@ -52,6 +52,5 @@ public interface WebInvocationPrivilegeEvaluator {
* be used in evaluation whether access should be granted.
* @return true if access is allowed, false if denied
*/
boolean isAllowed(String contextPath, String uri, String method,
Authentication authentication);
boolean isAllowed(String contextPath, String uri, String method, Authentication authentication);
}

View File

@ -34,6 +34,5 @@ interface HttpServletRequestFactory {
* @param response the original {@link HttpServletResponse}. Cannot be null.
* @return a non-null HttpServletRequest
*/
HttpServletRequest create(HttpServletRequest request,
HttpServletResponse response);
HttpServletRequest create(HttpServletRequest request, HttpServletResponse response);
}