Skip to content

Commit

Permalink
Fix missing semicolons that jslint complains about
Browse files Browse the repository at this point in the history
  • Loading branch information
pquerna committed May 25, 2010
1 parent c1b3fd1 commit cfc1749
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dislocate/interfaces/generic.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ exports.list = function()
{
var rv = {'services': services.all()};
return rv;
}
};
11 changes: 5 additions & 6 deletions dislocate/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,13 @@ exports.start = function()
runchecks_timer = setTimeout(runchecks, checkup_interval);
ps.sub(ps.STATE_STOP, function() {
exports.stop();
})
}
});
};

exports.stop = function()
{
clearTimeout(runchecks_timer);
delete runchecks_timer;
}
};

exports.register = function(name, metadata) {
var last = preptree(name);
Expand All @@ -104,5 +103,5 @@ exports.find = function(name) {
exports.all = function()
{
var r = {};
return utils.merge(services, r)
}
return utils.merge(services, r);
};

0 comments on commit cfc1749

Please sign in to comment.