You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2009/08/06 05:20:57 UTC

svn commit: r801505 - /commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/HexTest.java

Author: ggregory
Date: Thu Aug  6 03:20:53 2009
New Revision: 801505

URL: http://svn.apache.org/viewvc?rev=801505&view=rev
Log:
No logging by default.

Modified:
    commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/HexTest.java

Modified: commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/HexTest.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/HexTest.java?rev=801505&r1=801504&r2=801505&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/HexTest.java (original)
+++ commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/HexTest.java Thu Aug  6 03:20:53 2009
@@ -40,7 +40,8 @@
 public class HexTest extends TestCase {
 
     private static final String BAD_ENCODING_NAME = "UNKNOWN";
-    private final static boolean LOG = true;
+    
+    private final static boolean LOG = false;
 
     public HexTest(String name) {
         super(name);