Fix AuthorizationManager API Documentation Typo

Closes gh-15704
This commit is contained in:
Josh Cummings 2024-09-17 18:25:08 -06:00
parent c4ce3f61fd
commit 1a0203ecf6
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ The `AuthorizationManager` interface contains two methods:
----
AuthorizationDecision check(Supplier<Authentication> authentication, Object secureObject);
default AuthorizationDecision verify(Supplier<Authentication> authentication, Object secureObject)
default void verify(Supplier<Authentication> authentication, Object secureObject)
throws AccessDeniedException {
// ...
}