git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1462086 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-03-28 13:29:36 +00:00
parent 83ad716bc2
commit 08f02a086c
1 changed files with 3 additions and 2 deletions

View File

@ -57,7 +57,8 @@ public class CSVRecord implements Serializable, Iterable<String> {
* Returns a value by index.
*
* @param i
* the index of the column retrieved
* a column index (0-based)
* @return the String at the given index
*/
public String get(final int i) {
return values[i];