[java-identity-provider] branch main updated: Missed a return statement.
Scott Cantor
cantor.2 at osu.edu
Thu Apr 8 23:30:10 UTC 2021
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=83e19f6aca9b8bb60c249ac130f725b56b4ea079
The following commit(s) were added to refs/heads/main by this push:
new 83e19f6ac Missed a return statement.
83e19f6ac is described below
commit 83e19f6aca9b8bb60c249ac130f725b56b4ea079
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Apr 8 19:30:07 2021 -0400
Missed a return statement.
---
.../shibboleth/idp/attribute/filter/spring/impl/AttributeRuleParser.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/idp-attribute-filter-spring/src/main/java/net/shibboleth/idp/attribute/filter/spring/impl/AttributeRuleParser.java b/idp-attribute-filter-spring/src/main/java/net/shibboleth/idp/attribute/filter/spring/impl/AttributeRuleParser.java
index 057099830..30aa75f2e 100644
--- a/idp-attribute-filter-spring/src/main/java/net/shibboleth/idp/attribute/filter/spring/impl/AttributeRuleParser.java
+++ b/idp-attribute-filter-spring/src/main/java/net/shibboleth/idp/attribute/filter/spring/impl/AttributeRuleParser.java
@@ -101,6 +101,7 @@ public class AttributeRuleParser extends BaseFilterParser {
if (permitAny != null && permitAny.booleanValue()) {
builder.addPropertyValue("isDenyRule", false);
builder.addPropertyValue("matcher", Matcher.MATCHES_ALL);
+ return;
}
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list