From 8e93e4715fad221c4d11cc138dcbb93ed1c558a1 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 46256b58d3..e419d1e377 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 @@ public interface ClaimAccessor { * @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")