HHH-6715 Integrator classes not being located correctly

This commit is contained in:
Strong Liu 2011-10-11 17:20:18 +08:00
parent 82b167e5f1
commit 4cb4a25994
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public class ClassLoaderServiceImpl implements ClassLoaderService {
protected Class<?> findClass(String name) throws ClassNotFoundException {
for ( ClassLoader classLoader : classLoaderArray ) {
try {
classLoader.loadClass( name );
return classLoader.loadClass( name );
}
catch (Exception ignore) {
}