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

markt 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 d43edc0  Add missing Javadoc
d43edc0 is described below

commit d43edc0a49c762a4069686eaa4b1e53043bd3ff9
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue May 25 14:55:31 2021 +0100

    Add missing Javadoc
---
 java/jakarta/el/ELContext.java         | 2 ++
 java/jakarta/el/ELResolver.java        | 1 +
 java/jakarta/el/ExpressionFactory.java | 1 +
 3 files changed, 4 insertions(+)

diff --git a/java/jakarta/el/ELContext.java b/java/jakarta/el/ELContext.java
index d406a12..1c86b98 100644
--- a/java/jakarta/el/ELContext.java
+++ b/java/jakarta/el/ELContext.java
@@ -289,6 +289,8 @@ public abstract class ELContext {
     /**
      * Coerce the supplied object to the requested type.
      *
+     * @param <T>  The type to which the object should be coerced
+     *
      * @param obj  The object to be coerced
      * @param type The type to which the object should be coerced
      *
diff --git a/java/jakarta/el/ELResolver.java b/java/jakarta/el/ELResolver.java
index 43479e8..14625f7 100644
--- a/java/jakarta/el/ELResolver.java
+++ b/java/jakarta/el/ELResolver.java
@@ -126,6 +126,7 @@ public abstract class ELResolver {
     /**
      * Converts the given object to the given type. This default implementation
      * always returns <code>null</code>.
+     * @param <T>     The type to which the object should be converted
      *
      * @param context The EL context for this evaluation
      * @param obj     The object to convert
diff --git a/java/jakarta/el/ExpressionFactory.java 
b/java/jakarta/el/ExpressionFactory.java
index 825386f..d9a83df 100644
--- a/java/jakarta/el/ExpressionFactory.java
+++ b/java/jakarta/el/ExpressionFactory.java
@@ -217,6 +217,7 @@ public abstract class ExpressionFactory {
 
     /**
      * Coerce the supplied object to the requested type.
+     * @param <T>          The type to which the object should be coerced
      *
      * @param obj          The object to be coerced
      * @param expectedType The type to which the object should be coerced

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

Reply via email to