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 66fa9b7103 Use inheritdoc 66fa9b7103 is described below commit 66fa9b71030d847490b9f95b4f0f44ffce208350 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 13761b976e..67ad9e5ca3 100644 --- a/java/org/apache/catalina/connector/Request.java +++ b/java/org/apache/catalina/connector/Request.java @@ -925,8 +925,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> @@ -947,8 +948,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