mirror of https://gitee.com/bigwinds/arangodb
make jslint happy
This commit is contained in:
parent
b4d88f3484
commit
9602d2ee3d
|
@ -876,14 +876,12 @@ BaseMiddleware = function (templateCollection, helperCollection) {
|
||||||
options.app.mount,
|
options.app.mount,
|
||||||
response.contentType,
|
response.contentType,
|
||||||
parseInt(response.body.length, 10));
|
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",
|
console.log("%s, outgoing response of type %s, body file: %s",
|
||||||
options.app.mount,
|
options.app.mount,
|
||||||
response.contentType,
|
response.contentType,
|
||||||
response.bodyFromFile);
|
response.bodyFromFile);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
console.log("%s, outgoing response of type %s, no body",
|
console.log("%s, outgoing response of type %s, no body",
|
||||||
options.app.mount,
|
options.app.mount,
|
||||||
response.contentType);
|
response.contentType);
|
||||||
|
|
Loading…
Reference in New Issue