Pull Request #1824 Fixed merged into Jetty-10

This commit is contained in:
Greg Wilkins 2017-10-31 18:01:53 +11:00
parent 108d56707b
commit bdaeb657f6

View File

@ -618,6 +618,10 @@ public class MetaInfConfiguration extends AbstractConfiguration
if (web_inf_lib.exists() && web_inf_lib.isDirectory())
{
String[] files=web_inf_lib.list();
if (files != null)
{
Arrays.sort(files);
}
for (int f=0;files!=null && f<files.length;f++)
{
try