Skip to content

Commit

Permalink
#114 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vssekorin committed Mar 24, 2018
1 parent acc9310 commit d2fb305
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public final class RemoveEdge<T> extends UndirectedGraphEnvelope<T> {
* @param src Undirected graph
* @param edge Edge
*/
public RemoveEdge(final UndirectedGraph<T> src, final Map.Entry<T, T> edge) {
public RemoveEdge(final UndirectedGraph<T> src,
final Map.Entry<T, T> edge) {
this(src, edge.getKey(), edge.getValue());
}

Expand Down

0 comments on commit d2fb305

Please sign in to comment.