[java-identity-provider] branch main updated: Forgot to de-abstract method.
Scott Cantor
cantor.2 at osu.edu
Fri Oct 2 16:41:10 UTC 2020
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=d610e740661f69fd5f9d745aa68a67299141bfa3
The following commit(s) were added to refs/heads/main by this push:
new d610e7406 Forgot to de-abstract method.
d610e7406 is described below
commit d610e740661f69fd5f9d745aa68a67299141bfa3
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Oct 2 12:41:07 2020 -0400
Forgot to de-abstract method.
---
.../main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java b/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java
index a6eec44bb..46797f6a4 100644
--- a/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java
+++ b/idp-admin-api/src/main/java/net/shibboleth/idp/plugin/PropertyDrivenIdPPlugin.java
@@ -206,6 +206,8 @@ public abstract class PropertyDrivenIdPPlugin extends AbstractIdPPlugin {
* @return default update locations
* @throws PluginException
*/
- @Nonnull @NonnullElements protected abstract List<URL> getDefaultUpdateURLs() throws PluginException;
+ @Nonnull @NonnullElements protected List<URL> getDefaultUpdateURLs() throws PluginException {
+ return Collections.emptyList();
+ }
}
\ 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