Title: [1352] trunk/qdox/src/main/java/com/thoughtworks/qdox/model/Type.java: Type.getGenericValue() should use static method on Type object, not on its instance
Revision
1352
Author
rfscholte
Date
2011-10-02 10:28:20 -0500 (Sun, 02 Oct 2011)

Log Message

Type.getGenericValue() should use static method on Type object, not on its instance

Modified Paths

Diff

Modified: trunk/qdox/src/main/java/com/thoughtworks/qdox/model/Type.java (1351 => 1352)

--- trunk/qdox/src/main/java/com/thoughtworks/qdox/model/Type.java	2011-10-02 15:07:56 UTC (rev 1351)
+++ trunk/qdox/src/main/java/com/thoughtworks/qdox/model/Type.java	2011-10-02 15:28:20 UTC (rev 1352)
@@ -171,7 +171,7 @@
         StringBuffer result = new StringBuffer( getResolvedValue( base, typeVariableList ) );
         for ( Iterator<Type> iter = base.getActualTypeArguments().iterator(); iter.hasNext(); )
         {
-            result.append( iter.next().resolve( base, typeVariableList ) );
+            result.append( Type.resolve( base, typeVariableList ) );
             if ( iter.hasNext() )
             {
                 result.append( "," );


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to