This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/9.0.x by this push: new 616d8a7 Revert due to uncertainty about the behavior 616d8a7 is described below commit 616d8a736478083872819cf531039064b9914190 Author: remm <r...@apache.org> AuthorDate: Tue Apr 20 20:49:01 2021 +0200 Revert due to uncertainty about the behavior --- java/org/apache/catalina/startup/ContextConfig.java | 7 +++---- webapps/docs/changelog.xml | 4 ---- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/java/org/apache/catalina/startup/ContextConfig.java b/java/org/apache/catalina/startup/ContextConfig.java index 8018d70..8172a3b 100644 --- a/java/org/apache/catalina/startup/ContextConfig.java +++ b/java/org/apache/catalina/startup/ContextConfig.java @@ -2383,10 +2383,9 @@ public class ContextConfig implements LifecycleListener { return; } - if ((javaClass.getAccessFlags() - & (org.apache.tomcat.util.bcel.Const.ACC_ANNOTATION - | org.apache.tomcat.util.bcel.Const.ACC_INTERFACE)) != 0) { - // Skip annotations or interfaces + if ((javaClass.getAccessFlags() & + org.apache.tomcat.util.bcel.Const.ACC_ANNOTATION) != 0) { + // Skip annotations. return; } diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index cbdbd8e..bf65ff6 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -129,10 +129,6 @@ resulting in one of the deployments failing and errors being reported. (markt) </fix> - <fix> - <bug>65256</bug>: HandlesTypes class sets should not include - interfaces. (remm) - </fix> </changelog> </subsection> <subsection name="Jasper"> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org