This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-digester.git
The following commit(s) were added to refs/heads/master by this push: new b6d6a511 Javadoc b6d6a511 is described below commit b6d6a51178e8b4643d5fe58676edddc837f4002a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jun 18 09:10:25 2024 -0400 Javadoc --- .../src/main/java/org/apache/commons/digester3/CallMethodRule.java | 4 ++-- .../java/org/apache/commons/digester3/binder/CallMethodBuilder.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java index 50609968..3baefcc7 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/CallMethodRule.java @@ -176,7 +176,7 @@ public class CallMethodRule * @param paramCount The number of parameters to collect, or zero for a single argument from the body of the element * @param paramTypes The Java classes that represent the parameter types of the method arguments (if you wish to use * a primitive type, specify the corresponding Java wrapper class instead, such as - * {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter) + * {@link Boolean#TYPE} for a {@code boolean} parameter) */ public CallMethodRule( final int targetOffset, final String methodName, final int paramCount, final Class<?>[] paramTypes ) { @@ -258,7 +258,7 @@ public class CallMethodRule * @param paramCount The number of parameters to collect, or zero for a single argument from the body of the element * @param paramTypes The Java classes that represent the parameter types of the method arguments (if you wish to use * a primitive type, specify the corresponding Java wrapper class instead, such as - * {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter) + * {@link Boolean#TYPE} for a {@code boolean} parameter) */ public CallMethodRule( final String methodName, final int paramCount, final Class<?> paramTypes[] ) { diff --git a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java index 4b42ee57..54743441 100644 --- a/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java +++ b/commons-digester3-core/src/main/java/org/apache/commons/digester3/binder/CallMethodBuilder.java @@ -126,7 +126,7 @@ public final class CallMethodBuilder * Sets the Java classes that represent the parameter types of the method arguments. * * If you wish to use a primitive type, specify the corresonding Java wrapper class instead, - * such as {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter. + * such as {@link Boolean#TYPE} for a {@code boolean} parameter. * * @param paramTypes The Java classes that represent the parameter types of the method arguments * @return this builder instance @@ -151,7 +151,7 @@ public final class CallMethodBuilder * Sets the Java class names that represent the parameter types of the method arguments. * * If you wish to use a primitive type, specify the corresonding Java wrapper class instead, - * such as {@link java.lang.Boolean#TYPE} for a {@code boolean} parameter. + * such as {@link Boolean#TYPE} for a {@code boolean} parameter. * * @param paramTypeNames The Java classes names that represent the parameter types of the method arguments * @return this builder instance