Index: src/java/com/thoughtworks/qdox/model/annotation/EvaluatingVisitor.java =================================================================== --- src/java/com/thoughtworks/qdox/model/annotation/EvaluatingVisitor.java (revision 515) +++ src/java/com/thoughtworks/qdox/model/annotation/EvaluatingVisitor.java (working copy) @@ -51,9 +51,8 @@ * Return the result type of a binary operator *
* Performs binary numeric promotion as specified in the Java Language
- * Specification, section
- * 5.6.1
+ * Specification,
+ * @see section 5.6.1
*/
protected static Class resultType( Object left, Object right ) {
Class type = void.class;
@@ -83,9 +82,8 @@
* Return the numeric result type of a binary operator
*
* Performs binary numeric promotion as specified in the Java Language
- * Specification, section
- * 5.6.1
+ * Specification,
+ * @see section 5.6.1
*/
protected static Class numericResultType( Object left, Object right ) {
Class type = void.class;
@@ -106,9 +104,8 @@
* Return the result type of an unary operator
*
* Performs unary numeric promotion as specified in the Java Language
- * Specification, section
- * 5.6.2
+ * Specification,
+ * @see section 5.6.2
*/
protected static Class unaryNumericResultType( Object value ) {
Class type = void.class;
Index: src/java/com/thoughtworks/qdox/model/ModelBuilder.java
===================================================================
--- src/java/com/thoughtworks/qdox/model/ModelBuilder.java (revision 515)
+++ src/java/com/thoughtworks/qdox/model/ModelBuilder.java (working copy)
@@ -143,7 +143,7 @@
*
* @param typeDef
* @param dimensions
- * @return
+ * @return the Type
*/
public Type createType(TypeDef typeDef, int dimensions) {
if(typeDef == null) {