This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new 70e302f9c2 Remove useless override 70e302f9c2 is described below commit 70e302f9c2b98d020811fdbb2387f669f6c78923 Author: remm <r...@apache.org> AuthorDate: Wed Sep 20 17:20:16 2023 +0200 Remove useless override --- java/org/apache/catalina/webresources/CachedResource.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/java/org/apache/catalina/webresources/CachedResource.java b/java/org/apache/catalina/webresources/CachedResource.java index b2b4d62693..6bb2f3cb58 100644 --- a/java/org/apache/catalina/webresources/CachedResource.java +++ b/java/org/apache/catalina/webresources/CachedResource.java @@ -32,7 +32,6 @@ import java.security.cert.Certificate; import java.text.Collator; import java.util.Arrays; import java.util.Locale; -import java.util.jar.JarEntry; import java.util.jar.JarFile; import java.util.jar.Manifest; @@ -624,13 +623,5 @@ public class CachedResource implements WebResource { return ((JarURLConnection) resourceURL.openConnection()).getJarFile(); } - @Override - public JarEntry getJarEntry() throws IOException { - if (getEntryName() == null) { - return null; - } else { - return super.getJarEntry(); - } - } } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org