1
0
Fork 0

Reverted API name change on _getConnectingEdges

This commit is contained in:
Michael Hackstein 2017-06-07 11:13:52 +02:00
parent 7aa2a9d4c7
commit db0dcd5579
2 changed files with 2 additions and 2 deletions

View File

@ -858,7 +858,7 @@ If this edge is used as a vertex by another edge, the other edge will be removed
Get all connecting edges between 2 groups of vertices defined by the examples
`graph._connectingEdges(vertexExample, vertexExample2, options)`
`graph._getConnectingEdges(vertexExample, vertexExample2, options)`
The function accepts an id, an example, a list of examples or even an empty
example as parameter for vertexExample.

View File

@ -1757,7 +1757,7 @@ class Graph {
// / @brief was docuBlock JSF_general_graph_connectingEdges
// //////////////////////////////////////////////////////////////////////////////
_connectingEdges (vertexExample1, vertexExample2, options) {
_getConnectingEdges (vertexExample1, vertexExample2, options) {
options = options || {};
if (options.vertex1CollectionRestriction) {
if (!Array.isArray(options.vertex1CollectionRestriction)) {