Remove dead code, fix indentation

This commit is contained in:
hns 2002-11-21 15:38:44 +00:00
parent 424b2f8021
commit 8de915b1bb

View file

@ -611,13 +611,6 @@ public final class DbMapping implements Updatable {
if (sel != null)
return new StringBuffer (sel);
StringBuffer s = new StringBuffer ("SELECT * FROM ");
/* String[] cols = getColumns ();
for (int i=0; i<cols.length; i++) {
if (i>0)
s.append (",");
s.append (cols[i]);
}
s.append (" FROM "); */
s.append (getTableName ());
s.append (" ");
// cache rendered string for later calls.