瀏覽代碼

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;
     }