Don't make JavaDoc references from production code to test code

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1512618 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-08-10 10:49:30 +00:00
parent 04a2e9ebe4
commit 4213415b2c
1 changed files with 0 additions and 1 deletions

View File

@ -131,7 +131,6 @@ public final class CSVRecord implements Serializable, Iterable<String> {
* the header size. Some programs can export files that fails this test but still produce parsable files.
*
* @return true of this record is valid, false if not
* @see CSVParserTest#org.apache.commons.csv.CSVParserTest.testMappedButNotSetAsOutlook2007ContactExport()
*/
public boolean isConsistent() {
return mapping == null ? true : mapping.size() == values.length;