You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/03/21 20:03:31 UTC

svn commit: r1303504 - /commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/PerformanceTest.java

Author: sebb
Date: Wed Mar 21 19:03:30 2012
New Revision: 1303504

URL: http://svn.apache.org/viewvc?rev=1303504&view=rev
Log:
Excel works as well for the input file

Modified:
    commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/PerformanceTest.java

Modified: commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/PerformanceTest.java
URL: http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/PerformanceTest.java?rev=1303504&r1=1303503&r2=1303504&view=diff
==============================================================================
--- commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/PerformanceTest.java (original)
+++ commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/PerformanceTest.java Wed Mar 21 19:03:30 2012
@@ -54,7 +54,7 @@ public class PerformanceTest {
     private static int num = 0; // number of elapsed times recorded
     private static long[] elapsedTimes = new long[max];
     
-    private static final CSVFormat format = CSVFormat.DEFAULT.withSurroundingSpacesIgnored(false);
+    private static final CSVFormat format = CSVFormat.EXCEL;
 
     public static void main(String [] args) throws Exception {
         final int argc = args.length;