[java-identity-provider] branch master updated: Correct a deprecation warning.

Scott Cantor cantor.2 at osu.edu
Wed Mar 4 10:56:18 EST 2020


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=7bbf382bf4136f68960c35ada1a28dde31fb4ce9

The following commit(s) were added to refs/heads/master by this push:
       new  7bbf382   Correct a deprecation warning.
7bbf382 is described below

commit 7bbf382bf4136f68960c35ada1a28dde31fb4ce9
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 4 10:56:14 2020 -0500

    Correct a deprecation warning.
---
 .../net/shibboleth/idp/attribute/resolver/dc/NonFailFastValidator.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/dc/NonFailFastValidator.java b/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/dc/NonFailFastValidator.java
index 2874b51..3479e02 100644
--- a/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/dc/NonFailFastValidator.java
+++ b/idp-attribute-resolver-api/src/main/java/net/shibboleth/idp/attribute/resolver/dc/NonFailFastValidator.java
@@ -43,7 +43,7 @@ public class NonFailFastValidator implements Validator {
     public NonFailFastValidator(@Nullable final Validator validator) {
         // V4 deprecation.  Remove the class in V5
         DeprecationSupport.warnOnce(ObjectType.CLASS, "NonFailFastValidator", null, 
-                "failFast on the dataConnector or p:throwValidateError on the contained Validator");
+                "failFastInitialize on DataConnector or p:throwValidateError on the contained Validator");
         embeddedValidator = validator;
         if (embeddedValidator != null) {
             embeddedValidator.setThrowValidateError(false);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list