You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by mr...@apache.org on 2004/10/08 15:44:58 UTC

svn commit: rev 54081 - incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test

Author: mreutegg
Date: Fri Oct  8 06:44:57 2004
New Revision: 54081

Modified:
   incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/JUnitTest.java
Log:
- removed unnecessary LogPrintWriter.

Modified: incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/JUnitTest.java
==============================================================================
--- incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/JUnitTest.java	(original)
+++ incubator/jackrabbit/trunk/src/test/org/apache/jackrabbit/test/JUnitTest.java	Fri Oct  8 06:44:57 2004
@@ -31,11 +31,6 @@
     /**
      * Output stream for general messages from tests.
      */
-    protected LogPrintWriter log = new LogPrintWriter(logger);
-
-    /**
-     * Output stream for reference output from tests.
-     */
-    protected LogPrintWriter ref = new LogPrintWriter(logger);
+    public final LogPrintWriter log = new LogPrintWriter(logger);
 
 }