Fixed bug in NLSongsDB implementation.

This commit is contained in:
Jonathan Bernard 2015-12-11 13:59:04 -06:00
parent 5e81284220
commit 3b77006381

View File

@ -27,10 +27,7 @@ public class NLSongsDB {
/// ### Common
public def save(def model) {
if (model.id > 0) return update(model)
else {
if (create(model) > 0) return model
else return null } }
else return create(model) }
/// ### Services
public Service findService(int id) {