remove unused function arguments

This commit is contained in:
Richard Remer 2015-09-16 08:45:49 -07:00
parent fb678f0afe
commit d148078253

View File

@ -49,7 +49,7 @@ smtp.createServer(serverOpts, function(req) {
http.post({ http.post({
url: serverOpts.endpoint, url: serverOpts.endpoint,
json: email json: email
}, function(err, res, body) { }, function(err) {
if (err) console.error(err); if (err) console.error(err);
}) })
}).on("error", function(err) { }).on("error", function(err) {