Author: britter
Date: Tue Jul 15 17:17:04 2014
New Revision: 1610761
URL: http://svn.apache.org/r1610761
Log:
Clearify the meaning of isConsistent
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
Modified:
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
URL:
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java?rev=1610761&r1=1610760&r2=1610761&view=diff
==============================================================================
---
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
(original)
+++
commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java
Tue Jul 15 17:17:04 2014
@@ -130,8 +130,12 @@ public final class CSVRecord implements
}
/**
- * Returns true if this record is consistent, false if not. Currently, the
only check is matching the record size to
- * the header size. Some programs can export files that fails this test
but still produce parsable files.
+ * Tells whether the record size matches the header size.
+ *
+ * <p>
+ * Returns true if the sizes for this record match and false if not. Some
programs can export files that fail this
+ * test but still produce parsable files.
+ * </p>
*
* @return true of this record is valid, false if not
*/