This commit is contained in:
Timo Westkämper 2009-10-04 20:31:54 +00:00
parent 3c03104095
commit c6bc44aae1

View File

@ -114,7 +114,7 @@ public class EntitySerializer implements Serializer{
builder.append(", new Class[]{");
first = true;
for (ParameterModel p : c.getParameters()){
if (!first) builder.append(",");
if (!first) builder.append(", ");
builder.append(p.getRealTypeName() + ".class");
first = false;
}