diff --git a/src/main/java/org/apache/commons/csv/CSVRecord.java b/src/main/java/org/apache/commons/csv/CSVRecord.java index 287e4481..f893f336 100644 --- a/src/main/java/org/apache/commons/csv/CSVRecord.java +++ b/src/main/java/org/apache/commons/csv/CSVRecord.java @@ -131,7 +131,6 @@ public final class CSVRecord implements Serializable, Iterable { * 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;