- Revision
- 1433
- Author
- rfscholte
- Date
- 2011-10-21 15:13:17 -0500 (Fri, 21 Oct 2011)
Log Message
comment emtry if-statement fix javadoc-warnings
Modified Paths
Diff
Modified: trunk/qdox/src/main/java/com/thoughtworks/qdox/model/_expression_/FieldRef.java (1432 => 1433)
--- trunk/qdox/src/main/java/com/thoughtworks/qdox/model/_expression_/FieldRef.java 2011-10-19 21:53:09 UTC (rev 1432) +++ trunk/qdox/src/main/java/com/thoughtworks/qdox/model/_expression_/FieldRef.java 2011-10-21 20:13:17 UTC (rev 1433) @@ -25,7 +25,6 @@ import com.thoughtworks.qdox.model.JavaClass; import com.thoughtworks.qdox.model.JavaField; import com.thoughtworks.qdox.model.JavaMember; -import com.thoughtworks.qdox.model.JavaPackage; import com.thoughtworks.qdox.model.JavaParameter; import com.thoughtworks.qdox.model.impl.DefaultJavaType; @@ -67,19 +66,16 @@ return name; } - /** {@inheritDoc} */ public String getNamePrefix( int end ) { return name.substring( 0, parts[end + 1] ); } - /** {@inheritDoc} */ public String getNamePart( int index ) { return name.substring( parts[index] + 1, parts[index + 1] ); } - /** {@inheritDoc} */ public int getPartCount() { return parts.length - 1; @@ -106,7 +102,6 @@ this.context = context; } - /** {@inheritDoc} */ public String getClassPart() { String result = null; @@ -119,7 +114,6 @@ return result; } - /** {@inheritDoc} */ public String getFieldPart() { String result = null; @@ -149,7 +143,6 @@ return field; } - /** {@inheritDoc} */ public JavaField getField() { if ( fieldIndex < 0 ) @@ -207,10 +200,9 @@ { result = ( (JavaParameter) context ).getParentClass(); } - else if ( context instanceof JavaPackage ) - { - // - } +// else if ( context instanceof JavaPackage ) +// { +// } return result; } }
To unsubscribe from this list please visit:
