You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2008/02/26 09:49:05 UTC

svn commit: r631134 - in /commons/sandbox/csv/trunk/src/test/org/apache/commons/csv: CSVStrategyTest.java CSVUtilsTest.java ExtendedBufferedReaderTest.java

Author: bayard
Date: Tue Feb 26 00:49:04 2008
New Revision: 631134

URL: http://svn.apache.org/viewvc?rev=631134&view=rev
Log:
Making PMD suggested changes

Modified:
    commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVStrategyTest.java
    commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVUtilsTest.java
    commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/ExtendedBufferedReaderTest.java

Modified: commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVStrategyTest.java
URL: http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVStrategyTest.java?rev=631134&r1=631133&r2=631134&view=diff
==============================================================================
--- commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVStrategyTest.java (original)
+++ commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVStrategyTest.java Tue Feb 26 00:49:04 2008
@@ -16,10 +16,7 @@
  */
 package org.apache.commons.csv;
 
-import java.io.IOException;
-import java.io.Reader;
 import java.io.StringReader;
-import java.util.Arrays;
 
 import junit.framework.Test;
 import junit.framework.TestCase;

Modified: commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVUtilsTest.java
URL: http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVUtilsTest.java?rev=631134&r1=631133&r2=631134&view=diff
==============================================================================
--- commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVUtilsTest.java (original)
+++ commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/CSVUtilsTest.java Tue Feb 26 00:49:04 2008
@@ -17,13 +17,8 @@
 package org.apache.commons.csv;
 
 import java.io.IOException;
-import java.io.Reader;
-import java.io.StringReader;
-import java.util.Arrays;
 
-import junit.framework.Test;
 import junit.framework.TestCase;
-import junit.framework.TestSuite;
 
 /**
  * CSVUtilsTest

Modified: commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/ExtendedBufferedReaderTest.java
URL: http://svn.apache.org/viewvc/commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/ExtendedBufferedReaderTest.java?rev=631134&r1=631133&r2=631134&view=diff
==============================================================================
--- commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/ExtendedBufferedReaderTest.java (original)
+++ commons/sandbox/csv/trunk/src/test/org/apache/commons/csv/ExtendedBufferedReaderTest.java Tue Feb 26 00:49:04 2008
@@ -29,7 +29,6 @@
  */
 public class ExtendedBufferedReaderTest extends TestCase {
 
-  private StringBuffer buf = null;
   private ExtendedBufferedReader br = null;
   
   /**