You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/10/15 10:57:27 UTC

[tomcat] branch master updated: Fix Javadoc for Java 8

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 3082a43  Fix Javadoc for Java 8
3082a43 is described below

commit 3082a43ed3ac49d66ef9759ad5ea4455a51c3d25
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Oct 15 11:57:11 2020 +0100

    Fix Javadoc for Java 8
---
 java/jakarta/servlet/AsyncContext.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/java/jakarta/servlet/AsyncContext.java b/java/jakarta/servlet/AsyncContext.java
index 12ed736..80ff5fa 100644
--- a/java/jakarta/servlet/AsyncContext.java
+++ b/java/jakarta/servlet/AsyncContext.java
@@ -145,10 +145,10 @@ public interface AsyncContext {
     /**
      * Creates and returns an AsyncListener object
      *
-     * @param <T>
-     * @param clazz
+     * @param <T> The type to create that extends AsyncListener
+     * @param clazz The class to instantiate to create the listener
      * @return the newly created AsyncListener object
-     * @throws ServletException
+     * @throws ServletException if the listener cannot be created
      */
     <T extends AsyncListener> T createListener(Class<T> clazz)
     throws ServletException;


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