Author: ggregory
Date: Tue Mar 26 20:52:28 2013
New Revision: 1461307

URL: http://svn.apache.org/r1461307
Log:
Better lvar name.

Modified:
    commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java

Modified: 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java
URL: 
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java?rev=1461307&r1=1461306&r2=1461307&view=diff
==============================================================================
--- 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java 
(original)
+++ 
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVParser.java 
Tue Mar 26 20:52:28 2013
@@ -251,9 +251,9 @@ public class CSVParser implements Iterab
             String[] header = null;
             if (format.getHeader().length == 0) {
                 // read the header from the first line of the file
-                final CSVRecord rec = nextRecord();
-                if (rec != null) {
-                    header = rec.values();
+                final CSVRecord record = nextRecord();
+                if (record != null) {
+                    header = record.values();
                 }
             } else {
                 header = format.getHeader();


Reply via email to