// We have to clear Blacklist caches or the class will never
// be found
//((UnifiedClassLoader)dcl).clearBlacklists();
// To be backward compatible
RepositoryClassLoader rcl = (RepositoryClassLoader)myloader;
rcl.clearClassBlackList();
rcl.clearResourceBlackList();
// Now load the class through the cl
dynClass = myloader.loadClass(cc.getName());
if (trace) logger.trace(this + " " + pool + " myloader:" + myloader + " created class:" + dynClass);