- Revision
- 1411
- Author
- rfscholte
- Date
- 2011-10-14 14:17:39 -0500 (Fri, 14 Oct 2011)
Log Message
use resolveCanonicalName to resolve FieldRef.field
Modified Paths
Diff
Modified: trunk/qdox/src/main/java/com/thoughtworks/qdox/model/_expression_/FieldRef.java (1410 => 1411)
--- trunk/qdox/src/main/java/com/thoughtworks/qdox/model/_expression_/FieldRef.java 2011-10-12 20:08:53 UTC (rev 1410) +++ trunk/qdox/src/main/java/com/thoughtworks/qdox/model/_expression_/FieldRef.java 2011-10-14 19:17:39 UTC (rev 1411) @@ -23,7 +23,6 @@ import com.thoughtworks.qdox.model.JavaAnnotatedElement; import com.thoughtworks.qdox.model.JavaClass; -import com.thoughtworks.qdox.model.JavaClassParent; import com.thoughtworks.qdox.model.JavaField; import com.thoughtworks.qdox.model.JavaMember; import com.thoughtworks.qdox.model.JavaPackage; @@ -175,7 +174,7 @@ for ( int i = 0; i < parts.length - 1; ++i ) { String className = getNamePrefix( i ); - String typeName = baseClass.resolveType( className ); + String typeName = baseClass.resolveCanonicalName( className ); if ( typeName != null ) {
To unsubscribe from this list please visit:
