From d270507b7c4b8d7447eaac0c8834ecb32c5136e6 Mon Sep 17 00:00:00 2001 From: smallbun <30397655+leshalv@users.noreply.github.com> Date: Mon, 29 Jan 2024 21:23:58 +0800 Subject: [PATCH] revelation Builder constructor --- .../oauth2/server/authorization/OAuth2Authorization.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2Authorization.java b/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2Authorization.java index ef8bb69dd..610ed4ac8 100644 --- a/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2Authorization.java +++ b/oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/OAuth2Authorization.java @@ -391,7 +391,7 @@ public static class Builder implements Serializable { private Map, Token> tokens = new HashMap<>(); private final Map attributes = new HashMap<>(); - protected Builder(String registeredClientId) { + public Builder(String registeredClientId) { this.registeredClientId = registeredClientId; }