Преглед на файлове

Merge branch '6.2.x' into 6.3.x

Closes gh-15822
Josh Cummings преди 11 месеца
родител
ревизия
dfce3a280d
променени са 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 {
     // ...
 }