spring-projects / spring-security

Spring Security
http://spring.io/projects/spring-security
Apache License 2.0
8.45k stars 5.76k forks source link

Minor docs error in AuthenticatedReactiveAuthorizationManager #14978

Closed MrJovanovic13 closed 4 days ago

MrJovanovic13 commented 2 weeks ago

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> {
marcusdacoregio commented 4 days ago

Closing in favor of https://github.com/spring-projects/spring-security/pull/14979