[java-shib-shared] branch main updated: Add final keyword.

Scott Cantor cantor.2 at osu.edu
Wed Mar 8 23:59:22 UTC 2023


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=d2552bf98b584420d1a389e077c3ffd4d2f07283

The following commit(s) were added to refs/heads/main by this push:
     new d2552bf9 Add final keyword.
d2552bf9 is described below

commit d2552bf98b584420d1a389e077c3ffd4d2f07283
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Wed Mar 8 18:59:19 2023 -0500

    Add final keyword.
---
 .../main/java/net/shibboleth/shared/collection/CollectionSupport.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shib-support/src/main/java/net/shibboleth/shared/collection/CollectionSupport.java b/shib-support/src/main/java/net/shibboleth/shared/collection/CollectionSupport.java
index 89b30c7e..44bd82fc 100644
--- a/shib-support/src/main/java/net/shibboleth/shared/collection/CollectionSupport.java
+++ b/shib-support/src/main/java/net/shibboleth/shared/collection/CollectionSupport.java
@@ -286,7 +286,7 @@ public final class CollectionSupport {
      */
     @SafeVarargs
     @SuppressWarnings("null")
-    @Nonnull @NonnullElements @Unmodifiable @NotLive public static <T> List<T> arrayAsList(@Nonnull T... a) {
+    @Nonnull @NonnullElements @Unmodifiable @NotLive public static <T> List<T> arrayAsList(@Nonnull final T... a) {
         return Arrays.asList(a);
     }
 }
\ 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