浏览代码

Moved MockAuthenticationManager to test package.

Luke Taylor 16 年之前
父节点
当前提交
365ae3936e
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      core/src/test/java/org/springframework/security/MockAuthenticationManager.java

+ 1 - 2
core/src/main/java/org/springframework/security/MockAuthenticationManager.java → core/src/test/java/org/springframework/security/MockAuthenticationManager.java

@@ -38,8 +38,7 @@ public class MockAuthenticationManager extends AbstractAuthenticationManager {
 
     //~ Methods ========================================================================================================
 
-    public Authentication doAuthentication(Authentication authentication)
-        throws AuthenticationException {
+    public Authentication doAuthentication(Authentication authentication) throws AuthenticationException {
         if (grantAccess) {
             return authentication;
         } else {