1
0
Fork 0

Removed commented debug output

This commit is contained in:
Michael Hackstein 2014-07-08 16:02:01 +02:00
parent 70f4da0534
commit 47d092cc3c
1 changed files with 0 additions and 11 deletions

View File

@ -3967,11 +3967,6 @@ var changeEdgeDefinitionsForGraph = function(graph, edgeDefinition, newCollectio
///
////////////////////////////////////////////////////////////////////////////////
Graph.prototype._editEdgeDefinitions = function(edgeDefinition) {
/*
require("internal").print("Before:");
require("internal").print(this.__vertexCollections);
require("internal").print(this.__orphanCollections);
*/
edgeDefinition = sortEdgeDefinition(edgeDefinition);
var self = this;
@ -4013,12 +4008,6 @@ Graph.prototype._editEdgeDefinitions = function(edgeDefinition) {
}
);
updateBindCollections(this);
/*
require("internal").print("After:");
require("internal").print(this.__vertexCollections);
require("internal").print(this.__orphanCollections);
*/
};