Fix style to pass jlint

This commit is contained in:
Raymond Feng 2014-06-18 22:35:52 -07:00
parent b4a45603cb
commit 614ac2b419
1 changed files with 2 additions and 2 deletions

View File

@ -299,8 +299,8 @@ function buildWhere(self, model, where) {
*/
SqlConnector.prototype.deleteAll =
SqlConnector.prototype.destroyAll = function destroyAll(model, where, callback) {
this.command('DELETE FROM ' + this.tableEscaped(model)
+ buildWhere(this, model, where), function (err, result) {
this.command('DELETE FROM ' + this.tableEscaped(model) +
buildWhere(this, model, where), function (err, result) {
if (callback) {
callback(err, result);
}