소스 검색

Reduce setAuthentication scope now that it should only be called by AbstractAuthenticationManager.

Ben Alex 21 년 전
부모
커밋
3f7f8e26fa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/src/main/java/org/acegisecurity/AuthenticationException.java

+ 1 - 1
core/src/main/java/org/acegisecurity/AuthenticationException.java

@@ -57,7 +57,7 @@ public abstract class AuthenticationException extends AcegiSecurityException {
 
     //~ Methods ================================================================
 
-    public void setAuthentication(Authentication authentication) {
+    void setAuthentication(Authentication authentication) {
         this.authentication = authentication;
     }