massive cleanup of Type.java; introduced human-readable toString() and one-instance...
[org.ibex.classgen.git] / src / org / ibex / classgen / FieldGen.java
index aab5586..479a481 100644 (file)
@@ -16,7 +16,7 @@ public class FieldGen implements CGConst {
     public String toString() { StringBuffer sb = new StringBuffer(); toString(sb); return sb.toString(); }
     public void   toString(StringBuffer sb) {
         sb.append(ClassGen.flagsToString(flags));
-        sb.append(type.humanReadable());
+        sb.append(type);
         sb.append(" ");
         sb.append(name);
         sb.append(";");