Skip to content

Commit 12d20f9

Browse files
committed
Fix incorrect Javadoc
Closes gh-8744
1 parent c854f6b commit 12d20f9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

web/src/main/java/org/springframework/security/web/authentication/switchuser/SwitchUserFilter.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,8 @@ public void setUserDetailsService(UserDetailsService userDetailsService) {
437437
}
438438

439439
/**
440-
* Set the URL to respond to exit user processing.
440+
* Set the URL to respond to exit user processing. This is a shortcut for
441+
* {@link #setExitUserMatcher(RequestMatcher)}.
441442
*
442443
* @param exitUserUrl The exit user URL.
443444
*/
@@ -448,10 +449,9 @@ public void setExitUserUrl(String exitUserUrl) {
448449
}
449450

450451
/**
451-
* Set the matcher to respond to exit user processing. This is a shortcut for
452-
* {@link #setExitUserMatcher(RequestMatcher)}
452+
* Set the matcher to respond to exit user processing.
453453
*
454-
* @param exitUserMatcher The exit matcher to use
454+
* @param exitUserMatcher The exit matcher to use.
455455
*/
456456
public void setExitUserMatcher(RequestMatcher exitUserMatcher) {
457457
Assert.notNull(exitUserMatcher, "exitUserMatcher cannot be null");

0 commit comments

Comments
 (0)