1
0
Fork 0

make jslint happy

This commit is contained in:
Jan Steemann 2013-07-27 00:29:26 +02:00
parent b4d88f3484
commit 9602d2ee3d
1 changed files with 2 additions and 4 deletions

View File

@ -876,14 +876,12 @@ BaseMiddleware = function (templateCollection, helperCollection) {
options.app.mount,
response.contentType,
parseInt(response.body.length, 10));
}
else if (response.hasOwnProperty("bodyFromFile")) {
} else if (response.hasOwnProperty("bodyFromFile")) {
console.log("%s, outgoing response of type %s, body file: %s",
options.app.mount,
response.contentType,
response.bodyFromFile);
}
else {
} else {
console.log("%s, outgoing response of type %s, no body",
options.app.mount,
response.contentType);