We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a082f0 commit b581686Copy full SHA for b581686
1 file changed
src/main/java/org/apache/commons/csv/CSVRecord.java
@@ -217,12 +217,12 @@ public boolean isSet(final String name) {
217
/**
218
* Checks whether a column with given index has a value.
219
*
220
- * @param i
+ * @param index
221
* a column index (0-based)
222
* @return whether a column with given index has a value
223
*/
224
- public boolean isSet(final int i) {
225
- return 0 <= i && i < values.length;
+ public boolean isSet(final int index) {
+ return 0 <= index && index < values.length;
226
}
227
228
0 commit comments