From 46f17bed795d21d22b7f9d77364bdc737b9b4142 Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Mon, 21 Jun 2004 06:17:20 +0000 Subject: [PATCH] Make isPasswordCorrect protected to facilitate subclass use. --- .../acegisecurity/providers/dao/DaoAuthenticationProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/acegisecurity/providers/dao/DaoAuthenticationProvider.java b/core/src/main/java/org/acegisecurity/providers/dao/DaoAuthenticationProvider.java index ea204b93a3..89ce4c7edf 100644 --- a/core/src/main/java/org/acegisecurity/providers/dao/DaoAuthenticationProvider.java +++ b/core/src/main/java/org/acegisecurity/providers/dao/DaoAuthenticationProvider.java @@ -244,7 +244,7 @@ public class DaoAuthenticationProvider implements AuthenticationProvider, } } - private boolean isPasswordCorrect(Authentication authentication, User user) { + protected boolean isPasswordCorrect(Authentication authentication, User user) { Object salt = null; if (this.saltSource != null) {