[java-shib-shared] branch main updated: Add default constructor to mock class.
Scott Cantor
cantor.2 at osu.edu
Wed Aug 20 12:14:04 UTC 2025
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-shib-shared.
View the commit online:
http://git.shibboleth.net/view/?p=java-shib-shared.git;a=commit;h=3666184ea18f3dae81139b41ab508616ec62d3c7
The following commit(s) were added to refs/heads/main by this push:
new 3666184e Add default constructor to mock class.
3666184e is described below
commit 3666184ea18f3dae81139b41ab508616ec62d3c7
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Aug 20 08:14:01 2025 -0400
Add default constructor to mock class.
---
.../java/net/shibboleth/shared/testing/MockReloadableService.java | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/shib-testing/src/main/java/net/shibboleth/shared/testing/MockReloadableService.java b/shib-testing/src/main/java/net/shibboleth/shared/testing/MockReloadableService.java
index 97644b54..c5289adb 100644
--- a/shib-testing/src/main/java/net/shibboleth/shared/testing/MockReloadableService.java
+++ b/shib-testing/src/main/java/net/shibboleth/shared/testing/MockReloadableService.java
@@ -32,6 +32,14 @@ public class MockReloadableService<T> extends AbstractReloadableService<T> {
/** The component we are presenting to provide. */
@Nullable private final SpringServiceableComponent<T> component;
+ /**
+ * Default constructor.
+ */
+ public MockReloadableService() {
+ this(null);
+ }
+
+
/**
* Constructor.
*
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list