[java-shib-shared] branch main updated: Missing public qualifiers.
Scott Cantor
cantor.2 at osu.edu
Fri Jan 20 19:26: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=935a68ff595f5121262424c096e86e08cede3c09
The following commit(s) were added to refs/heads/main by this push:
new 935a68ff Missing public qualifiers.
935a68ff is described below
commit 935a68ff595f5121262424c096e86e08cede3c09
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Fri Jan 20 14:26:19 2023 -0500
Missing public qualifiers.
---
.../java/net/shibboleth/shared/collection/CollectionSupport.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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 7be80019..3741aafd 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
@@ -102,7 +102,7 @@ public final class CollectionSupport {
* @return immutable copied list
*/
@SuppressWarnings("null")
- @Nonnull @NonnullElements @Unmodifiable @NotLive static <T> List<T> copyToList(
+ @Nonnull @NonnullElements @Unmodifiable @NotLive public static <T> List<T> copyToList(
@Nonnull @NonnullElements final Collection<? extends T> coll) {
return List.copyOf(coll);
}
@@ -142,7 +142,7 @@ public final class CollectionSupport {
* @return immutable copied set
*/
@SuppressWarnings("null")
- @Nonnull @NonnullElements @Unmodifiable @NotLive static <T> Set<T> copyToSet(
+ @Nonnull @NonnullElements @Unmodifiable @NotLive public static <T> Set<T> copyToSet(
@Nonnull @NonnullElements final Collection<? extends T> coll) {
return Set.copyOf(coll);
}
@@ -188,7 +188,7 @@ public final class CollectionSupport {
* @return immutable copied map
*/
@SuppressWarnings("null")
- @Nonnull @NonnullElements @Unmodifiable @NotLive static <U,T> Map<U,T> copyToMap(
+ @Nonnull @NonnullElements @Unmodifiable @NotLive public static <U,T> Map<U,T> copyToMap(
@Nonnull final Map<? extends U, ? extends T> map) {
return Map.copyOf(map);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list