[java-shib-shared] 01/02: Typo in method name
Ian Young
ian at iay.org.uk
Tue Apr 4 06:14:33 UTC 2023
This is an automated email from the git hooks/post-receive script.
iay 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=864d8d5dc2381b255c6da98c7286dcdae6b88cee
commit 864d8d5dc2381b255c6da98c7286dcdae6b88cee
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Tue Apr 4 06:56:01 2023 +0100
Typo in method name
---
.../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 44bd82fc..2091ae2e 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
@@ -199,7 +199,7 @@ public final class CollectionSupport {
* @return two member set
*/
@SuppressWarnings("null")
- @Nonnull @Unmodifiable @NotLive public static <T> Set<T> settOf(@Nonnull final T first, @Nonnull final T second) {
+ @Nonnull @Unmodifiable @NotLive public static <T> Set<T> setOf(@Nonnull final T first, @Nonnull final T second) {
return Set.of(first, second);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list