mirror of https://gitee.com/bigwinds/arangodb
jslint fix
This commit is contained in:
parent
ec1ecaa107
commit
c63c8c465e
|
@ -581,7 +581,10 @@ var checkIfMayBeDropped = function(colName, graphName, graphs) {
|
|||
var from = edgeDefinition.from;
|
||||
var to = edgeDefinition.to;
|
||||
var collection = edgeDefinition.collection;
|
||||
if (collection === colName || from.indexOf(colName) !== -1 || to.indexOf(colName) !== -1) {
|
||||
if (collection === colName
|
||||
|| from.indexOf(colName) !== -1
|
||||
|| to.indexOf(colName) !== -1
|
||||
) {
|
||||
result = false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue