Skip to content

Commit 122feb5

Browse files
committed
Better internal name
Javadoc
1 parent 65d6d11 commit 122feb5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1893,8 +1893,8 @@ public boolean isCommentMarkerSet() {
18931893
/**
18941894
* Tests whether the next characters constitute a delimiter
18951895
*
1896-
* @param ch
1897-
* the current char
1896+
* @param ch0
1897+
* the first char (index 0).
18981898
* @param charSeq
18991899
* the match char sequence
19001900
* @param startIndex
@@ -1905,8 +1905,8 @@ public boolean isCommentMarkerSet() {
19051905
* the delimiter length
19061906
* @return true if the match is successful
19071907
*/
1908-
private boolean isDelimiter(final char ch, final CharSequence charSeq, final int startIndex, final char[] delimiter, final int delimiterLength) {
1909-
if (ch != delimiter[0]) {
1908+
private boolean isDelimiter(final char ch0, final CharSequence charSeq, final int startIndex, final char[] delimiter, final int delimiterLength) {
1909+
if (ch0 != delimiter[0]) {
19101910
return false;
19111911
}
19121912
final int len = charSeq.length();

0 commit comments

Comments
 (0)