I was looking through some reactive code and found a minor docs error introduced during some docs refactoring.
* @param <T> The type of object authorization is being performed against. This does not
* @author Rob Winch
* @since 5.0 matter since the authorization decision does not use the object.
*/
public class AuthenticatedReactiveAuthorizationManager<T> implements ReactiveAuthorizationManager<T> {
should be
* @param <T> The type of object authorization is being performed against. This does not
* matter since the authorization decision does not use the object.
* @author Rob Winch
* @since 5.0
*/
public class AuthenticatedReactiveAuthorizationManager<T> implements ReactiveAuthorizationManager<T> {
Comment From: marcusdacoregio
Closing in favor of https://github.com/spring-projects/spring-security/pull/14979