This is an automated email from the ASF dual-hosted git repository.

remm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
     new 8310e9f449 Use inheritdoc
8310e9f449 is described below

commit 8310e9f449d293cecf4c6e9437bfabec8d0a1b5a
Author: remm <r...@apache.org>
AuthorDate: Tue Apr 2 17:06:36 2024 +0200

    Use inheritdoc
---
 java/org/apache/catalina/connector/Request.java | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/java/org/apache/catalina/connector/Request.java 
b/java/org/apache/catalina/connector/Request.java
index f57888357f..390ca9daa1 100644
--- a/java/org/apache/catalina/connector/Request.java
+++ b/java/org/apache/catalina/connector/Request.java
@@ -899,8 +899,9 @@ public class Request implements HttpServletRequest {
 
 
     /**
-     * Return the names of all request attributes for this Request, or an 
empty <code>Enumeration</code> if there are
-     * none. Note that the attribute names returned will only be those for the 
attributes set via
+     * {@inheritDoc}
+     * <p>
+     * The attribute names returned will only be those for the attributes set 
via
      * {@link #setAttribute(String, Object)}. Tomcat internal attributes will 
not be included although they are
      * accessible via {@link #getAttribute(String)}. The Tomcat internal 
attributes include:
      * <ul>
@@ -921,8 +922,6 @@ public class Request implements HttpServletRequest {
      * </ul>
      * Connector implementations may return some, all or none of these 
attributes and may also support additional
      * attributes.
-     *
-     * @return the attribute names enumeration
      */
     @Override
     public Enumeration<String> getAttributeNames() {


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

Reply via email to