Title: [569] trunk/qdox/src/java/com/thoughtworks/qdox/model/Type.java: Type.toString() should use getGenericValue()
Revision
569
Author
rfscholte
Date
2009-02-25 15:18:25 -0600 (Wed, 25 Feb 2009)

Log Message

Type.toString() should use getGenericValue()

Modified Paths


Diff

Modified: trunk/qdox/src/java/com/thoughtworks/qdox/model/Type.java (568 => 569)

--- trunk/qdox/src/java/com/thoughtworks/qdox/model/Type.java	2009-02-21 19:59:28 UTC (rev 568)
+++ trunk/qdox/src/java/com/thoughtworks/qdox/model/Type.java	2009-02-25 21:18:25 UTC (rev 569)
@@ -117,8 +117,8 @@
     }
 
     public String toString() {
-        if (dimensions == 0) return getValue();
-        StringBuffer buff = new StringBuffer(getValue());
+        if (dimensions == 0) return getGenericValue();
+        StringBuffer buff = new StringBuffer(getGenericValue());
         for (int i = 0; i < dimensions; i++) buff.append("[]");
         String result = buff.toString();
         return result;


To unsubscribe from this list please visit:

http://xircles.codehaus.org/manage_email

Reply via email to