From 10377b63fa91680f42fb1b0b909bfd965f41ddfa Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sat, 22 Oct 2022 16:32:28 -0400 Subject: [PATCH] Fix spelling --- src/test/java/org/apache/commons/logging/LoadTestCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/logging/LoadTestCase.java b/src/test/java/org/apache/commons/logging/LoadTestCase.java index 00e5389..8dc5fda 100644 --- a/src/test/java/org/apache/commons/logging/LoadTestCase.java +++ b/src/test/java/org/apache/commons/logging/LoadTestCase.java @@ -76,12 +76,12 @@ public class LoadTestCase extends TestCase{ } // not very trivial to emulate we must implement "findClass", - // but it will delegete to junit class loder first + // but it will delegate to JUnit class loader first @Override public Class loadClass(final String name) throws ClassNotFoundException { // isolates all logging classes, application in the same classloader too. - // filters exceptions to simlify handling in test + // filters exceptions to simplify handling in test for (final String element : LOG_PCKG) { if (name.startsWith(element) && name.indexOf("Exception") == -1) { return def(name);