1
0

Normalize to US English spelling.

This commit is contained in:
Gary Gregory
2021-02-08 14:14:24 -05:00
parent 610117ab32
commit a3661dd192
7 changed files with 9 additions and 9 deletions

View File

@@ -48,7 +48,7 @@ public class AltHashtableTestCase extends TestCase {
* Hashtable implementation for storing factories in.
* <p>
* This does make the assumption that whatever JVM we are running in
* doesn't initialise classes until they are actually referenced (ie the
* doesn't initialize classes until they are actually referenced (ie the
* LogFactory class hasn't been initialized before this method is called).
* This is true of all JVMs I know of; and if it isn't then this test will
* fail and someone will tell us.

View File

@@ -96,7 +96,7 @@ public class SecurityAllowedTestCase extends TestCase
try {
// Use reflection so that we can control exactly when the static
// initialiser for the LogFactory class is executed.
// initializer for the LogFactory class is executed.
final Class c = this.getClass().getClassLoader().loadClass(
"org.apache.commons.logging.LogFactory");
final Method m = c.getMethod("getLog", new Class[] {Class.class});

View File

@@ -107,7 +107,7 @@ public class SecurityForbiddenTestCase extends TestCase
try {
// Use reflection so that we can control exactly when the static
// initialiser for the LogFactory class is executed.
// initializer for the LogFactory class is executed.
final Class c = this.getClass().getClassLoader().loadClass(
"org.apache.commons.logging.LogFactory");
final Method m = c.getMethod("getLog", new Class[] {Class.class});