1
0
Fork 0

removed tabs

This commit is contained in:
Jan Steemann 2014-05-14 17:41:00 +02:00
parent 37f81ee9d6
commit ee8fe74a8a
3 changed files with 8 additions and 3 deletions

View File

@ -32,11 +32,16 @@ module.define("org/arangodb/graph", function(exports, module) {
var gp = require("org/arangodb/graph-blueprint");
gp.forEach(function(x) {
require("console").warn('module "graph" is deprecated, please use ' +
'module "general-graph" instead');
Object.keys(gp).forEach(function (m) {
exports[m] = gp[m];
});
// -----------------------------------------------------------------------------
// --SECTION-- END-OF-FILE
// -----------------------------------------------------------------------------

View File

@ -36,7 +36,7 @@ require("console").warn('module "graph" is deprecated, please use ' +
'module "general-graph" instead');
Object.keys(gp).forEach(function (m) {
exports[m] = gp[m];
exports[m] = gp[m];
});

View File

@ -952,7 +952,7 @@ Kickstarter.prototype.isHealthy = function() {
res = JSON.parse(response.body);
results.push(res.results[0]);
if (res.results[0].error === true) {
error = true;
error = true;
}
}
catch (err) {