This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
commit fbb4bcaed58326f232cddca53a4b34580afa211a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Sep 13 09:33:31 2023 -0400 Better param name --- .../apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl.java b/src/main/java/org/apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl.java index b39b12d3..93b6803a 100644 --- a/src/main/java/org/apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl.java +++ b/src/main/java/org/apache/commons/net/ftp/parser/RegexFTPFileEntryParserImpl.java @@ -122,15 +122,15 @@ public abstract class RegexFTPFileEntryParserImpl extends FTPFileEntryParserImpl /** * Convenience method delegates to the internal MatchResult's group() method. * - * @param matchnum match group number to be retrieved + * @param matchNum match group number to be retrieved * * @return the content of the <code>matchnum'th</code> group of the internal match or null if this method is called without a match having been made. */ - public String group(final int matchnum) { + public String group(final int matchNum) { if (this.result == null) { return null; } - return this.result.group(matchnum); + return this.result.group(matchNum); } /**