You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2016/01/31 00:40:27 UTC

svn commit: r1727766 - /commons/proper/csv/trunk/src/main/java/org/apache/commons/csv/CSVRecord.java

Author: sebb
Date: Sat Jan 30 23:40:26 2016
New Revision: 1727766

URL: http://svn.apache.org/viewvc?rev=1727766&view=rev
Log:
CSV-167 Rename method and update Javadoc to correspond with reality

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=1727766&r1=1727765&r2=1727766&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 Sat Jan 30 23:40:26 2016
@@ -162,12 +162,12 @@ public final class CSVRecord implements
     }
 
     /**
-     * Checks whether this record is a comment, false otherwise.
+     * Checks whether this record has a comment, false otherwise.
      *
-     * @return true if this record is a comment, false otherwise
+     * @return true if this record has a comment, false otherwise
      * @since 1.3
      */
-    public boolean isComment() {
+    public boolean hasComment() {
         return comment != null;
     }