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-jxpath.git
commit ce218edb2b81d98ab2917ddca739159499c403ff Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Apr 12 09:31:40 2025 -0400 Javadoc --- .../java/org/apache/commons/jxpath/util/BasicTypeConverter.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java b/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java index 2d50c71..63bdd8b 100644 --- a/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java +++ b/src/main/java/org/apache/commons/jxpath/util/BasicTypeConverter.java @@ -43,7 +43,7 @@ import org.apache.commons.jxpath.Pointer; public class BasicTypeConverter implements TypeConverter { /** - * Value pointer + * Value {@link Pointer}. */ static final class ValuePointer implements Pointer { @@ -122,8 +122,8 @@ public class BasicTypeConverter implements TypeConverter { /** * Create a collection of a given type. * - * @param type destination class - * @return Collection + * @param type destination class. + * @return A new Collection. */ protected Collection allocateCollection(final Class type) { if (!type.isInterface() && (type.getModifiers() & Modifier.ABSTRACT) == 0) { @@ -147,7 +147,7 @@ public class BasicTypeConverter implements TypeConverter { * * @param type destination class * @param value double - * @return Number + * @return Number A Number, possibly cached. */ protected Number allocateNumber(Class type, final double value) { type = TypeUtils.wrapPrimitive(type);