You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2021/06/09 07:19:22 UTC

[tomcat] branch 9.0.x updated: Fix regression

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 10afe25  Fix regression
10afe25 is described below

commit 10afe25b61a6330a000a5e5380a2e697d3f2ab3f
Author: remm <re...@apache.org>
AuthorDate: Wed Jun 9 09:19:02 2021 +0200

    Fix regression
    
    Fix error generating reflection due to removed NIO class in 9.0.47.
---
 .../util/xreflection/ObjectReflectionPropertyInspector.java       | 1 -
 webapps/docs/changelog.xml                                        | 8 ++++++++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/java/org/apache/tomcat/util/xreflection/ObjectReflectionPropertyInspector.java b/java/org/apache/tomcat/util/xreflection/ObjectReflectionPropertyInspector.java
index f27a27f..514aeb4 100644
--- a/java/org/apache/tomcat/util/xreflection/ObjectReflectionPropertyInspector.java
+++ b/java/org/apache/tomcat/util/xreflection/ObjectReflectionPropertyInspector.java
@@ -105,7 +105,6 @@ public final class ObjectReflectionPropertyInspector {
                         Class.forName("org.apache.tomcat.util.net.AprEndpoint"),
                         Class.forName("org.apache.tomcat.util.net.Nio2Endpoint"),
                         Class.forName("org.apache.tomcat.util.net.NioEndpoint"),
-                        Class.forName("org.apache.tomcat.util.net.NioSelectorPool"),
                         Class.forName("org.apache.tomcat.util.net.SocketProperties")
                     )
                 )
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 0f8e742..9671b9e 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -105,6 +105,14 @@
   issues do not "pop up" wrt. others).
 -->
 <section name="Tomcat 9.0.48 (remm)" rtext="in development">
+  <subsection name="Coyote">
+    <changelog>
+      <fix>
+        Regression when generating reflection due to removed NIO classes
+        in 9.0.47. (remm)
+      </fix>
+    </changelog>
+  </subsection>
 </section>
 <section name="Tomcat 9.0.47 (remm)" rtext="not released">
   <subsection name="Catalina">

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org