Merge remote-tracking branch 'origin/jetty-9.4.x' into jetty-10.0.x

This commit is contained in:
Jan Bartel 2019-02-07 09:23:52 +11:00
commit 1d334d0f01
1 changed files with 2 additions and 1 deletions

View File

@ -534,7 +534,8 @@ public class WebAppClassLoader extends URLClassLoader
// If it is a server class, doesn't matter as we have loaded it from the
// webapp
webapp_class = this.findClass(name);
resolveClass(webapp_class);
if (resolve)
resolveClass(webapp_class);
if (LOG.isDebugEnabled())
LOG.debug("PLP webapp loaded {}",webapp_class);
return webapp_class;