You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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> {
The text was updated successfully, but these errors were encountered:
I was looking through some reactive code and found a minor docs error introduced during some docs refactoring.
should be
The text was updated successfully, but these errors were encountered: