Remove unnecessary log

This commit is contained in:
Juan Martín Sotuyo Dodero
2018-05-20 20:33:26 -03:00
parent a4e4acb4d9
commit 625431f8b1
@@ -1321,14 +1321,11 @@ public class ClassTypeResolver extends JavaParserVisitorAdapter {
try {
return pmdClassLoader.loadClass(fullClassName);
} catch (ClassNotFoundException ignored) {
// ignored
} catch (LinkageError e) {
if (LOG.isLoggable(Level.FINE)) {
LOG.log(Level.FINE, "Tried to load class " + fullClassName + " from on demand import, "
+ "which apparently doesn't exist.", ignored);
}
} catch (LinkageError ignored) {
if (LOG.isLoggable(Level.FINE)) {
LOG.log(Level.FINE, "Tried to load class " + fullClassName + " from on demand import, "
+ "which apparently doesn't exist.", ignored);
+ "with an incomplete classpath.", e);
}
}
}