[java-shib-shared] branch maint-9.1 updated: JPAR-230 - Track Spring Framework 6.2
Tom Zeller
tzeller at dragonacea.biz
Sat Aug 2 16:21:06 UTC 2025
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch maint-9.1
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=56486c3e2087d8fd6f6efeb7bcf586a0e04f5787
The following commit(s) were added to refs/heads/maint-9.1 by this push:
new 56486c3e JPAR-230 - Track Spring Framework 6.2
56486c3e is described below
commit 56486c3e2087d8fd6f6efeb7bcf586a0e04f5787
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Thu Jul 11 11:21:50 2024 +0100
JPAR-230 - Track Spring Framework 6.2
Add isClosed for 6.2.0-M5.
https://shibboleth.atlassian.net/browse/JPAR-230
---
.../java/net/shibboleth/shared/testing/MockApplicationContext.java | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/shib-testing/src/main/java/net/shibboleth/shared/testing/MockApplicationContext.java b/shib-testing/src/main/java/net/shibboleth/shared/testing/MockApplicationContext.java
index 2f64a2d2..d8e2dfce 100644
--- a/shib-testing/src/main/java/net/shibboleth/shared/testing/MockApplicationContext.java
+++ b/shib-testing/src/main/java/net/shibboleth/shared/testing/MockApplicationContext.java
@@ -330,6 +330,11 @@ public class MockApplicationContext implements ConfigurableApplicationContext {
public void close() {
}
+ /** {@inheritDoc} */
+ public boolean isClosed() {
+ throw new IllegalStateException();
+ }
+
/** {@inheritDoc} */
public boolean isActive() {
throw new IllegalStateException();
@@ -384,4 +389,4 @@ public class MockApplicationContext implements ConfigurableApplicationContext {
throw new IllegalStateException();
}
-}
\ No newline at end of file
+}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list