Commit a6bb48a2 authored by Andy Wilkinson's avatar Andy Wilkinson

Remove remaining references to no longer supported container versions

Closes gh-11504
parent 4179ed5a
...@@ -57,7 +57,7 @@ Spring Boot supports the following embedded servlet containers: ...@@ -57,7 +57,7 @@ Spring Boot supports the following embedded servlet containers:
|Jetty 9.4 |Jetty 9.4
|3.1 |3.1
|Undertow 1.3 |Undertow 1.4
|3.1 |3.1
|=== |===
......
...@@ -273,8 +273,6 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor ...@@ -273,8 +273,6 @@ public class JettyServletWebServerFactory extends AbstractServletWebServerFactor
root == null ? rootResource : new LoaderHidingResource(rootResource)); root == null ? rootResource : new LoaderHidingResource(rootResource));
for (URL resourceJarUrl : this.getUrlsOfJarsWithMetaInfResources()) { for (URL resourceJarUrl : this.getUrlsOfJarsWithMetaInfResources()) {
Resource resource = createResource(resourceJarUrl); 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()) { if (resource.exists() && resource.isDirectory()) {
resources.add(resource); resources.add(resource);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment