This is an automated email from the ASF dual-hosted git repository.
garydgregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push:
new a99c6904 Normalize spelling.
a99c6904 is described below
commit a99c69043ad9aa7d39d66ead63e13ba7335e60cb
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jul 7 07:06:02 2026 -0400
Normalize spelling.
---
.../commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/main/java/org/apache/commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java
b/src/main/java/org/apache/commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java
index d544a474..d7456afa 100644
---
a/src/main/java/org/apache/commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java
+++
b/src/main/java/org/apache/commons/net/ftp/parser/DefaultFTPFileEntryParserFactory.java
@@ -118,8 +118,8 @@ public class DefaultFTPFileEntryParserFactory implements
FTPFileEntryParserFacto
// Is the key a possible class name?
if (JAVA_QUALIFIED_NAME_PATTERN.matcher(key).matches()) {
try {
- // Load without initialising, so an unrelated class (e.g. one
taken from an untrusted SYST reply)
- // does not run its static initialiser before the type is
checked.
+ // Load without initializing, so an unrelated class (e.g. one
taken from an untrusted SYST reply)
+ // does not run its static initializer before the type is
checked.
final Class<?> parserClass = Class.forName(key, false,
getClass().getClassLoader());
if (!FTPFileEntryParser.class.isAssignableFrom(parserClass)) {
throw new ParserInitializationException(