Remove dead code, fix indentation
This commit is contained in:
parent
424b2f8021
commit
8de915b1bb
1 changed files with 1 additions and 8 deletions
|
@ -611,13 +611,6 @@ public final class DbMapping implements Updatable {
|
||||||
if (sel != null)
|
if (sel != null)
|
||||||
return new StringBuffer (sel);
|
return new StringBuffer (sel);
|
||||||
StringBuffer s = new StringBuffer ("SELECT * FROM ");
|
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 (getTableName ());
|
||||||
s.append (" ");
|
s.append (" ");
|
||||||
// cache rendered string for later calls.
|
// cache rendered string for later calls.
|
||||||
|
|
Loading…
Add table
Reference in a new issue