remove period between ret type and method name
[org.ibex.classgen.git] / src / org / ibex / classgen / Type.java
index 7463f04..441c6fc 100644 (file)
@@ -228,7 +228,7 @@ public abstract class Type implements CGConst {
                     if (name.equals("<init>"))
                         sb.append(Class.this.getShortName());
                     else
-                        sb.append(returnType.toString()).append(".").append(name);
+                        sb.append(returnType.toString()).append(" ").append(name);
                     sb.append("(");
                     for(int i=0; i<argTypes.length; i++)
                         sb.append((i==0?"":", ")+argTypes[i].toString());