Missed a space.

This commit is contained in:
Michael Bayne
2006-12-24 01:30:44 +00:00
parent 0235cd80ac
commit ea85c1d500
@@ -217,7 +217,7 @@ public class DepotMarshaller<T>
if (entity != null) {
for (Index index : entity.indices()) {
// TODO: delegate this to a database specific SQL generator
_declarations.add(index.type() + "index " + index.name() +
_declarations.add(index.type() + " index " + index.name() +
" (" + StringUtil.join(index.columns(), ", ") + ")");
}
}