From ca34ec26d8bab6e17e7e4d226f97011d2d04a55a Mon Sep 17 00:00:00 2001 From: kimyounguk1 Date: Wed, 25 Feb 2026 15:49:51 +0900 Subject: [PATCH] This commit fixes the @param tag typo in ClientAttributes.java to ensure the Javadoc build passes. Signed-off-by: kimyounguk1 Fix javadoc @param typo in ClientAttributes Signed-off-by: kimyounguk1 --- .../security/oauth2/client/web/ClientAttributes.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/ClientAttributes.java b/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/ClientAttributes.java index 9871ae2e77..2e377471a4 100644 --- a/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/ClientAttributes.java +++ b/oauth2/oauth2-client/src/main/java/org/springframework/security/oauth2/client/web/ClientAttributes.java @@ -24,7 +24,7 @@ import org.springframework.security.oauth2.client.registration.ClientRegistratio import org.springframework.util.Assert; /** - * Used for accessing the attribute that stores the the + * Used for accessing the attribute that stores the * {@link ClientRegistration#getRegistrationId()}. This ensures that * {@link org.springframework.security.oauth2.client.web.client.ClientRegistrationIdProcessor} * aligns with all of ways of setting on both @@ -44,7 +44,7 @@ public final class ClientAttributes { /** * Resolves the {@link ClientRegistration#getRegistrationId() clientRegistrationId} to * be used to look up the {@link OAuth2AuthorizedClient}. - * @param attributes the to search + * @param attributes the attributes to search. * @return the registration id to use. */ public static String resolveClientRegistrationId(Map attributes) {