[java-oidc-common] branch main updated: Change nonnull annotation to nullable

Codeberg noreply at shibboleth.net
Mon Mar 16 10:48:46 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-oidc-common.

View the commit online:
https://codeberg.org/Shibboleth/java-oidc-common/commit/c801941790ce30dd9bba2203bae56afc02f62f74

The following commit(s) were added to refs/heads/main by this push:
     new c8019417 Change nonnull annotation to nullable
c8019417 is described below

commit c801941790ce30dd9bba2203bae56afc02f62f74
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Mon Mar 16 10:48:35 2026 +0000

    Change nonnull annotation to nullable
---
 .../profile/decoding/impl/AbstractJSONResponseDecoderFunction.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/decoding/impl/AbstractJSONResponseDecoderFunction.java b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/decoding/impl/AbstractJSONResponseDecoderFunction.java
index 6ef4781d..38c3590b 100644
--- a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/decoding/impl/AbstractJSONResponseDecoderFunction.java
+++ b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/decoding/impl/AbstractJSONResponseDecoderFunction.java
@@ -53,7 +53,7 @@ public abstract class AbstractJSONResponseDecoderFunction<T> extends AbstractIni
     @Nonnull private Logger protocolMessageLog = LoggerFactory.getLogger(BASE_PROTOCOL_MESSAGE_LOGGER_CATEGORY);
     
     /** The configured logging sub-category for protocol messages. */
-    @Nonnull private String protocolMessageLoggerSubCategory;
+    @Nullable private String protocolMessageLoggerSubCategory;
     
     
     /** JSON object mapper. */
@@ -93,7 +93,7 @@ public abstract class AbstractJSONResponseDecoderFunction<T> extends AbstractIni
      * 
      * @return the logging sub-category
      */
-    @Nonnull protected String getProtocolMessageLoggerSubCategory() {
+    @Nullable protected String getProtocolMessageLoggerSubCategory() {
         return protocolMessageLoggerSubCategory;
     }
     

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


More information about the commits mailing list