[java-shib-attribute] branch main updated: Attempt #3 at javadoc fix.

Scott Cantor cantor.2 at osu.edu
Thu Sep 8 17:57:15 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=b2a5ed7926de904dab712d98a59050648372b0bd

The following commit(s) were added to refs/heads/main by this push:
     new b2a5ed792 Attempt #3 at javadoc fix.
b2a5ed792 is described below

commit b2a5ed7926de904dab712d98a59050648372b0bd
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Sep 8 13:57:11 2022 -0400

    Attempt #3 at javadoc fix.
---
 shib-attribute-filter-spring/pom.xml                          | 11 ++++++-----
 .../idp/attribute/filter/spring/policy/DataSources.java       |  3 +--
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/shib-attribute-filter-spring/pom.xml b/shib-attribute-filter-spring/pom.xml
index 53a35f511..0765209b8 100644
--- a/shib-attribute-filter-spring/pom.xml
+++ b/shib-attribute-filter-spring/pom.xml
@@ -33,6 +33,12 @@
             <version>${project.version}</version>
         </dependency>
 
+        <!-- Needed to fix a very odd javadoc generation bug. -->
+        <dependency>
+            <groupId>${opensaml.groupId}</groupId>
+            <artifactId>opensaml-messaging-api</artifactId>
+        </dependency>
+
         <dependency>
             <groupId>${shib-shared.groupId}</groupId>
             <artifactId>shib-security</artifactId>
@@ -112,11 +118,6 @@
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>${opensaml.groupId}</groupId>
-            <artifactId>opensaml-messaging-api</artifactId>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>${opensaml.groupId}</groupId>
             <artifactId>opensaml-profile-api</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 97b92fe8d..2cb81dd26 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
@@ -27,7 +27,6 @@ import net.shibboleth.idp.attribute.filter.context.AttributeFilterContext;
 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;
 
 /**
@@ -81,7 +80,7 @@ public abstract class DataSources {
 
     public static AttributeFilterContext unPopulatedFilterContext() {
 
-        BaseContext parent = new BaseContext() {};
+        final MessageContext parent = new MessageContext();
         parent.addSubcontext(new AttributeResolutionContext());
         return parent.getSubcontext(AttributeFilterContext.class, true);
     }

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


More information about the commits mailing list