Josh Cummings 11 месяцев назад
Родитель
Сommit
e27e8dfcd5
1 измененных файлов с 1 добавлено и 1 удалено
  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 {
     // ...
 }