Fix incorrect Javadoc

Closes gh-8744
This commit is contained in:
Eleftheria Stein 2020-06-22 13:14:34 +02:00
parent c854f6b190
commit 12d20f99a1
1 changed files with 4 additions and 4 deletions

View File

@ -437,7 +437,8 @@ public class SwitchUserFilter extends GenericFilterBean
} }
/** /**
* Set the URL to respond to exit user processing. * Set the URL to respond to exit user processing. This is a shortcut for
* {@link #setExitUserMatcher(RequestMatcher)}.
* *
* @param exitUserUrl The exit user URL. * @param exitUserUrl The exit user URL.
*/ */
@ -448,10 +449,9 @@ public class SwitchUserFilter extends GenericFilterBean
} }
/** /**
* Set the matcher to respond to exit user processing. This is a shortcut for * Set the matcher to respond to exit user processing.
* {@link #setExitUserMatcher(RequestMatcher)}
* *
* @param exitUserMatcher The exit matcher to use * @param exitUserMatcher The exit matcher to use.
*/ */
public void setExitUserMatcher(RequestMatcher exitUserMatcher) { public void setExitUserMatcher(RequestMatcher exitUserMatcher) {
Assert.notNull(exitUserMatcher, "exitUserMatcher cannot be null"); Assert.notNull(exitUserMatcher, "exitUserMatcher cannot be null");