From 041e3e0a121dc8ccda50824b5b5b29c33a02800e Mon Sep 17 00:00:00 2001 From: Parker Mauney Date: Tue, 21 Nov 2023 20:57:38 -0500 Subject: [PATCH] Fix typo in getClaimAsMap docstring --- .../org/springframework/security/oauth2/core/ClaimAccessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/ClaimAccessor.java b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/ClaimAccessor.java index 46256b58d32..e419d1e3779 100644 --- a/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/ClaimAccessor.java +++ b/oauth2/oauth2-core/src/main/java/org/springframework/security/oauth2/core/ClaimAccessor.java @@ -134,7 +134,7 @@ default URL getClaimAsURL(String claim) { * @param claim the name of the claim * @return the claim value or {@code null} if the claim does not exist * @throws IllegalArgumentException if the claim value cannot be converted to a - * {@code List} + * {@code Map} * @throws NullPointerException if the claim value is {@code null} */ @SuppressWarnings("unchecked")