[java-metadata-aggregator] branch main updated: Nullability annotation
Ian Young
ian at iay.org.uk
Thu Jan 26 12:28:37 UTC 2023
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch main
in repository java-metadata-aggregator.
View the commit online:
http://git.shibboleth.net/view/?p=java-metadata-aggregator.git;a=commit;h=02cc67e74ec8f8c92b088747e09abfe45adca7cf
The following commit(s) were added to refs/heads/main by this push:
new 02cc67e Nullability annotation
02cc67e is described below
commit 02cc67e74ec8f8c92b088747e09abfe45adca7cf
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Thu Jan 26 12:28:34 2023 +0000
Nullability annotation
---
mda-cli/src/test/java/net/shibboleth/metadata/cli/MDA137Stage.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/mda-cli/src/test/java/net/shibboleth/metadata/cli/MDA137Stage.java b/mda-cli/src/test/java/net/shibboleth/metadata/cli/MDA137Stage.java
index 47e3d3f..f174016 100644
--- a/mda-cli/src/test/java/net/shibboleth/metadata/cli/MDA137Stage.java
+++ b/mda-cli/src/test/java/net/shibboleth/metadata/cli/MDA137Stage.java
@@ -19,6 +19,8 @@ package net.shibboleth.metadata.cli;
import java.util.List;
+import javax.annotation.Nonnull;
+
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -37,7 +39,7 @@ public class MDA137Stage<T> extends AbstractStage<T> {
private final Logger log = LoggerFactory.getLogger(MDA137Stage.class);
@Override
- protected void doExecute(List<Item<T>> items) throws StageProcessingException {
+ protected void doExecute(@Nonnull List<Item<T>> items) throws StageProcessingException {
// Do absolutely nothing
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list