1
0
Fork 0

fix jslint

This commit is contained in:
Willi Goesgens 2015-08-03 14:12:22 +02:00
parent 71452a3fee
commit c53bade3c1
1 changed files with 3 additions and 1 deletions

View File

@ -1042,7 +1042,9 @@ SimpleQueryNear = function (collection, latitude, longitude, iid) {
if (this._index === null) {
var err = new ArangoError();
err.errorNum = arangodb.ERROR_QUERY_GEO_INDEX_MISSING;
err.errorMessage = require("internal").sprintf(arangodb.errors.ERROR_QUERY_GEO_INDEX_MISSING.message, collection.name());
err.errorMessage = require("internal").sprintf(
arangodb.errors.ERROR_QUERY_GEO_INDEX_MISSING.message,
collection.name());
throw err;
}
};