File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/apache/commons/jxpath/util Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4343public class BasicTypeConverter implements TypeConverter {
4444
4545 /**
46- * Value pointer
46+ * Value {@link Pointer}.
4747 */
4848 static final class ValuePointer implements Pointer {
4949
@@ -122,8 +122,8 @@ public BasicTypeConverter() {
122122 /**
123123 * Create a collection of a given type.
124124 *
125- * @param type destination class
126- * @return Collection
125+ * @param type destination class.
126+ * @return A new Collection.
127127 */
128128 protected Collection allocateCollection (final Class type ) {
129129 if (!type .isInterface () && (type .getModifiers () & Modifier .ABSTRACT ) == 0 ) {
@@ -147,7 +147,7 @@ protected Collection allocateCollection(final Class type) {
147147 *
148148 * @param type destination class
149149 * @param value double
150- * @return Number
150+ * @return Number A Number, possibly cached.
151151 */
152152 protected Number allocateNumber (Class type , final double value ) {
153153 type = TypeUtils .wrapPrimitive (type );
You can’t perform that action at this time.
0 commit comments