소스 검색

Fix incorrect Javadoc

Closes gh-8744
Eleftheria Stein 5 년 전
부모
커밋
12d20f99a1
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      web/src/main/java/org/springframework/security/web/authentication/switchuser/SwitchUserFilter.java

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

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