You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2005/10/19 01:06:17 UTC

svn commit: r326297 - /directory/shared/ldap/trunk/apache2-provider/src/test/org/apache/asn1new/ldap/codec/ModifyRequestTest.java

Author: elecharny
Date: Tue Oct 18 16:06:13 2005
New Revision: 326297

URL: http://svn.apache.org/viewcvs?rev=326297&view=rev
Log:
Deleted a useless static initialization of the logger.

Modified:
    directory/shared/ldap/trunk/apache2-provider/src/test/org/apache/asn1new/ldap/codec/ModifyRequestTest.java

Modified: directory/shared/ldap/trunk/apache2-provider/src/test/org/apache/asn1new/ldap/codec/ModifyRequestTest.java
URL: http://svn.apache.org/viewcvs/directory/shared/ldap/trunk/apache2-provider/src/test/org/apache/asn1new/ldap/codec/ModifyRequestTest.java?rev=326297&r1=326296&r2=326297&view=diff
==============================================================================
--- directory/shared/ldap/trunk/apache2-provider/src/test/org/apache/asn1new/ldap/codec/ModifyRequestTest.java (original)
+++ directory/shared/ldap/trunk/apache2-provider/src/test/org/apache/asn1new/ldap/codec/ModifyRequestTest.java Tue Oct 18 16:06:13 2005
@@ -30,14 +30,10 @@
 import org.apache.asn1.codec.EncoderException;
 import org.apache.asn1new.ber.Asn1Decoder;
 import org.apache.asn1new.ber.containers.IAsn1Container;
-import org.apache.asn1new.ldap.codec.grammar.ModifyRequestGrammar;
 import org.apache.asn1new.ldap.pojo.LdapMessage;
 import org.apache.asn1new.ldap.pojo.ModifyRequest;
 import org.apache.asn1new.primitives.OctetString;
 import org.apache.asn1new.util.StringUtils;
-import org.apache.log4j.PropertyConfigurator;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
 
 import junit.framework.Assert;
 import junit.framework.TestCase;
@@ -48,12 +44,6 @@
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
  */
 public class ModifyRequestTest extends TestCase {
-    private static final Logger log = LoggerFactory.getLogger( ModifyRequestTest.class );
-    
-    static 
-    {
-        PropertyConfigurator.configure( "conf/log4j.conf" );
-    }
     /**
      * Test the decoding of a ModifyRequest
      */