Browse Source

Merge branch '6.2.x' into 6.3.x

Closes gh-15822
Josh Cummings 11 months ago
parent
commit
dfce3a280d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/modules/ROOT/pages/servlet/authorization/architecture.adoc

+ 1 - 1
docs/modules/ROOT/pages/servlet/authorization/architecture.adoc

@@ -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 {
     // ...
 }