From 42d611828a6c1820ff6d17f8eb144a97021412c0 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Wed, 18 Aug 2021 11:26:12 -0400 Subject: [PATCH] Polish OAuth2TokenCustomizer --- .../oauth2/server/authorization/OAuth2TokenCustomizer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java b/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java index b1bcb800..54c6242c 100644 --- a/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java +++ b/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2TokenCustomizer.java @@ -22,16 +22,16 @@ package org.springframework.security.oauth2.server.authorization; * @author Joe Grandja * @since 0.1.0 * @see OAuth2TokenContext - * @param the type of the context containing the OAuth 2.0 Token attributes + * @param the type of the context containing the OAuth 2.0 Token attributes */ @FunctionalInterface -public interface OAuth2TokenCustomizer { +public interface OAuth2TokenCustomizer { /** * Customize the OAuth 2.0 Token attributes. * * @param context the context containing the OAuth 2.0 Token attributes */ - void customize(C context); + void customize(T context); }