不要怂,就是干,撸起袖子干!

Commit 47591d75 by Bart Nagel

remove unneccessary semicolon

1 parent 8fdaf157
Showing with 1 additions and 1 deletions
...@@ -272,7 +272,7 @@ module.exports = (function() { ...@@ -272,7 +272,7 @@ module.exports = (function() {
// for each model validator for this DAO // for each model validator for this DAO
Utils._.each(self.__options.validate, function(validator, validatorType) { Utils._.each(self.__options.validate, function(validator, validatorType) {
if (!Utils._.isFunction(validator)) if (!Utils._.isFunction(validator))
throw new Error("Invalid model validator function: " + validatorType); throw new Error("Invalid model validator function: " + validatorType)
try { try {
validator.apply(self) validator.apply(self)
} catch (err) { } catch (err) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!