Remove remaining references to no longer supported container versions

Closes gh-11504
This commit is contained in:
Andy Wilkinson 2018-01-31 17:29:55 +00:00
parent 4179ed5a35
commit a6bb48a2f4
2 changed files with 1 additions and 3 deletions

View File

@ -57,7 +57,7 @@ Spring Boot supports the following embedded servlet containers:
|Jetty 9.4
|3.1
|Undertow 1.3
|Undertow 1.4
|3.1
|===

View File

@ -273,8 +273,6 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor
root == null ? rootResource : new LoaderHidingResource(rootResource));
for (URL resourceJarUrl : this.getUrlsOfJarsWithMetaInfResources()) {
Resource resource = createResource(resourceJarUrl);
// Jetty 9.2 and earlier do not support nested jars. See
// https://github.com/eclipse/jetty.project/issues/518
if (resource.exists() && resource.isDirectory()) {
resources.add(resource);
}