From 4213415b2cb561389558e8dfe3b204dc2e2bddca Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Sat, 10 Aug 2013 10:49:30 +0000 Subject: [PATCH] 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 --- src/main/java/org/apache/commons/csv/CSVRecord.java | 1 - 1 file changed, 1 deletion(-) 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;