Cleanup redundant type casts
This commit is contained in:
@@ -120,7 +120,7 @@ public class LdapShaPasswordEncoder implements PasswordEncoder {
|
||||
sha.update(salt);
|
||||
}
|
||||
|
||||
byte[] hash = combineHashAndSalt(sha.digest(), (byte[]) salt);
|
||||
byte[] hash = combineHashAndSalt(sha.digest(), salt);
|
||||
|
||||
String prefix;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user