Javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1495965 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2013-06-24 09:15:27 +00:00
parent b460ef6200
commit ad0acc17e1
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ public class CSVRecord implements Serializable, Iterable<String> {
*
* @param name
* the name of the column to be retrieved.
* @return whether a given columns is mapped.
* @return whether a given columns is mapped and has a value
*/
public boolean isSet(final String name) {
return isMapped(name) && mapping.get(name).intValue() < values.length;