File tree Expand file tree Collapse file tree
src/main/java/com/brunomnsilva/smartgraph/graphview Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -434,15 +434,15 @@ public Graph<V, E> getModel() {
434434 * Returns a collection of the smart vertices that represent the underlying model vertices.
435435 * @return a collection of the smart vertices
436436 */
437- protected final Collection <SmartGraphVertex <V >> getSmartVertices () {
437+ public final Collection <SmartGraphVertex <V >> getSmartVertices () {
438438 return new ArrayList <>(this .vertexNodes .values ());
439439 }
440440
441441 /**
442442 * Returns a collection of the smart edges that represent the underlying model edges.
443443 * @return a collection of the smart edges
444444 */
445- protected final Collection <SmartGraphEdge <E , V >> getSmartEdges () {
445+ public final Collection <SmartGraphEdge <E , V >> getSmartEdges () {
446446 return new ArrayList <>(this .edgeNodes .values ());
447447 }
448448
You can’t perform that action at this time.
0 commit comments