소스 검색

Removed unused logger.

Luke Taylor 19 년 전
부모
커밋
2b0a65983d
1개의 변경된 파일4개의 추가작업 그리고 7개의 파일을 삭제
  1. 4 7
      core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationProvider.java

+ 4 - 7
core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationProvider.java

@@ -32,24 +32,24 @@ import org.springframework.util.Assert;
  * Client-side object which queries a  {@link RemoteAuthenticationManager} to
  * validate an authentication request.
  * 
- * <P>
+ * <p>
  * A new <code>Authentication</code> object is created by this class comprising
  * the request <code>Authentication</code> object's <code>principal</code>,
  * <code>credentials</code> and the <code>GrantedAuthority</code>[]s returned
  * by the <code>RemoteAuthenticationManager</code>.
  * </p>
  * 
- * <P>
+ * <p>
  * The <code>RemoteAuthenticationManager</code> should not require any special
  * username or password setting on the remoting client proxy factory to
  * execute the call. Instead the entire authentication request must be
  * encapsulated solely within the <code>Authentication</code> request object.
  * In practical terms this means the <code>RemoteAuthenticationManager</code>
- * will <B>not</B> be protected by BASIC or any other HTTP-level
+ * will <b>not</b> be protected by BASIC or any other HTTP-level
  * authentication.
  * </p>
  * 
- * <P>
+ * <p>
  * If authentication fails, a <code>RemoteAuthenticationException</code> will
  * be thrown. This exception should be caught and displayed to the user,
  * enabling them to retry with alternative credentials etc.
@@ -60,9 +60,6 @@ import org.springframework.util.Assert;
  */
 public class RemoteAuthenticationProvider implements AuthenticationProvider,
     InitializingBean {
-    //~ Static fields/initializers =============================================
-
-    private static final Log logger = LogFactory.getLog(RemoteAuthenticationProvider.class);
 
     //~ Instance fields ========================================================