Skip to content

Commit b388976

Browse files
committed
fix checkstyle
1 parent 50b4883 commit b388976

File tree

4 files changed

+2
-6
lines changed

4 files changed

+2
-6
lines changed

crypto/src/main/java/org/springframework/security/crypto/bcrypt/BCrypt.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414
package org.springframework.security.crypto.bcrypt;
1515

16-
import java.io.UnsupportedEncodingException;
1716
import java.nio.charset.StandardCharsets;
1817
import java.security.MessageDigest;
1918
import java.util.Arrays;

test/src/main/java/org/springframework/security/test/web/servlet/request/SecurityMockMvcRequestPostProcessors.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
import java.io.IOException;
1919
import java.io.InputStream;
20-
import java.io.UnsupportedEncodingException;
2120
import java.nio.charset.StandardCharsets;
2221
import java.security.cert.CertificateException;
2322
import java.security.cert.CertificateFactory;

web/src/main/java/org/springframework/security/web/access/WebInvocationPrivilegeEvaluator.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,5 @@ public interface WebInvocationPrivilegeEvaluator {
5252
* be used in evaluation whether access should be granted.
5353
* @return true if access is allowed, false if denied
5454
*/
55-
boolean isAllowed(String contextPath, String uri, String method,
56-
Authentication authentication);
55+
boolean isAllowed(String contextPath, String uri, String method, Authentication authentication);
5756
}

web/src/main/java/org/springframework/security/web/servletapi/HttpServletRequestFactory.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,5 @@ interface HttpServletRequestFactory {
3434
* @param response the original {@link HttpServletResponse}. Cannot be null.
3535
* @return a non-null HttpServletRequest
3636
*/
37-
HttpServletRequest create(HttpServletRequest request,
38-
HttpServletResponse response);
37+
HttpServletRequest create(HttpServletRequest request, HttpServletResponse response);
3938
}

0 commit comments

Comments
 (0)