소스 검색

Fix BCrypt Checkstyle

Issue: gh-3320
Rob Winch 6 년 전
부모
커밋
f56f55dc8e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      crypto/src/main/java/org/springframework/security/crypto/bcrypt/BCrypt.java

+ 1 - 1
crypto/src/main/java/org/springframework/security/crypto/bcrypt/BCrypt.java

@@ -687,7 +687,7 @@ public class BCrypt {
 	 * @return	an array containing the binary hashed password
 	 */
 	private byte[] crypt_raw(byte password[], byte salt[], int log_rounds,
-							 boolean sign_ext_bug, int safety) {
+							boolean sign_ext_bug, int safety) {
 		int rounds, i, j;
 		int cdata[] =  bf_crypt_ciphertext.clone();
 		int clen = cdata.length;