This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push: new ba0c608bea Refactor to make use of {@inheritDoc} better ba0c608bea is described below commit ba0c608bea9eea347cdb20ee31a5c2a96a8af844 Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Feb 20 12:45:56 2024 +0000 Refactor to make use of {@inheritDoc} better --- java/jakarta/el/ELResolver.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/java/jakarta/el/ELResolver.java b/java/jakarta/el/ELResolver.java index cdc933bd4d..ee01d3134a 100644 --- a/java/jakarta/el/ELResolver.java +++ b/java/jakarta/el/ELResolver.java @@ -45,7 +45,7 @@ public abstract class ELResolver { public abstract Object getValue(ELContext context, Object base, Object property); /** - * Invokes a method on the the given object. This default implementation always returns <code>null</code>. + * Invokes a method on the the given object. * * @param context The EL context for this evaluation * @param base The base object on which the method is to be found @@ -53,7 +53,7 @@ public abstract class ELResolver { * @param paramTypes The types of the parameters of the method to invoke * @param params The parameters with which to invoke the method * - * @return Always <code>null</code> + * @return This default implementation always returns <code>null</code> * * @since EL 2.2 */ @@ -141,14 +141,14 @@ public abstract class ELResolver { public abstract Class<?> getCommonPropertyType(ELContext context, Object base); /** - * Converts the given object to the given type. This default implementation always returns <code>null</code>. + * Converts the given object to the given type. * * @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 * @param type The type to which the object should be converted * - * @return Always <code>null</code> + * @return This default implementation always returns <code>null</code> * * @since EL 3.0 */ --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org