Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
fanavarro committed Dec 5, 2020
2 parents 51bb8e9 + da6145f commit 8f05dbd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ public void addNode(N node, Set<E> edges, N adjacentNodes) {
* Remove the node.
*
* @param nodeToRemove Node to remove.
* @see {@link com.github.fanavarro.graphlib.SimpleGraphImpl#removeNode(N)}
*/
public void removeNode(N nodeToRemove){
internalGraph.removeNode(nodeToRemove);
Expand All @@ -117,7 +116,6 @@ public void removeNode(N nodeToRemove){
* @param source The source node.
* @param edge The edge.
* @param target The target node.
* @see {@link com.github.fanavarro.graphlib.SimpleGraphImpl#removeLink(N, E, N)}
*/
public void removeLink(N source, E edge, N target){
internalGraph.removeLink(source, edge, target);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,11 @@
import com.github.fanavarro.graphlib.Graph;

/**
* Class for serializing graphs into Json Graph format (JGF).
* Class for serializing graphs into Json Graph format (JGF) (see https://jsongraphformat.info/).
*
* @author fabad
* @param <N> Type of node.
* @param <E> Type of edge.
* @see https://jsongraphformat.info/
*/
public class JGFSerializer<N, E> implements Serializer<N, E> {

Expand Down

0 comments on commit 8f05dbd

Please sign in to comment.