1
0
This commit is contained in:
Gary Gregory
2022-10-22 16:31:05 -04:00
parent 5783d0eb17
commit b83b31411a

View File

@@ -81,7 +81,7 @@ public class LoadTestCase extends TestCase{
public Class loadClass(final String name) throws ClassNotFoundException { public Class loadClass(final String name) throws ClassNotFoundException {
// isolates all logging classes, application in the same classloader too. // isolates all logging classes, application in the same classloader too.
// filters exeptions to simlify handling in test // filters exceptions to simlify handling in test
for (final String element : LOG_PCKG) { for (final String element : LOG_PCKG) {
if (name.startsWith(element) && name.indexOf("Exception") == -1) { if (name.startsWith(element) && name.indexOf("Exception") == -1) {
return def(name); return def(name);