[java-shib-attribute] branch main updated: Try another fix for javadoc issue.
Scott Cantor
cantor.2 at osu.edu
Thu Sep 8 17:25:59 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-attribute.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-attribute.git;a=commit;h=30aadb04f235e66cba68e90f810be3302ac4a01d
The following commit(s) were added to refs/heads/main by this push:
new 30aadb04f Try another fix for javadoc issue.
30aadb04f is described below
commit 30aadb04f235e66cba68e90f810be3302ac4a01d
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Sep 8 13:25:55 2022 -0400
Try another fix for javadoc issue.
---
shib-attribute-filter-spring/pom.xml | 6 ------
.../shibboleth/idp/attribute/filter/spring/policy/DataSources.java | 3 ++-
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/shib-attribute-filter-spring/pom.xml b/shib-attribute-filter-spring/pom.xml
index afee66d1c..53a35f511 100644
--- a/shib-attribute-filter-spring/pom.xml
+++ b/shib-attribute-filter-spring/pom.xml
@@ -33,12 +33,6 @@
<version>${project.version}</version>
</dependency>
- <!-- May be required for some odd esoteric javadoc reason... -->
- <dependency>
- <groupId>${opensaml.groupId}</groupId>
- <artifactId>opensaml-messaging-api</artifactId>
- </dependency>
-
<dependency>
<groupId>${shib-shared.groupId}</groupId>
<artifactId>shib-security</artifactId>
diff --git a/shib-attribute-filter-spring/src/test/java/net/shibboleth/idp/attribute/filter/spring/policy/DataSources.java b/shib-attribute-filter-spring/src/test/java/net/shibboleth/idp/attribute/filter/spring/policy/DataSources.java
index f9cf173a5..97b92fe8d 100644
--- a/shib-attribute-filter-spring/src/test/java/net/shibboleth/idp/attribute/filter/spring/policy/DataSources.java
+++ b/shib-attribute-filter-spring/src/test/java/net/shibboleth/idp/attribute/filter/spring/policy/DataSources.java
@@ -28,6 +28,7 @@ import net.shibboleth.idp.attribute.resolver.context.AttributeResolutionContext;
import net.shibboleth.idp.attribute.resolver.testing.TestSources;
import org.opensaml.messaging.context.BaseContext;
+import org.opensaml.messaging.context.MessageContext;
/**
* Strings and such used for testing.
@@ -69,7 +70,7 @@ public abstract class DataSources {
public static AttributeFilterContext populatedFilterContext(String principal, String issuerID, String recipientId) {
- BaseContext parent = new BaseContext() {};
+ final MessageContext parent = new MessageContext();
parent.addSubcontext(TestSources.createResolutionContext(principal, issuerID, recipientId));
AttributeFilterContext retVal = parent.getSubcontext(AttributeFilterContext.class, true);
retVal.setPrincipal(principal);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list