Updated brackets

This commit is contained in:
rmakynen 2018-10-09 09:09:38 +03:00 committed by GitHub
parent 57fbbcd836
commit f98e3c06bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ class Graph {
public Vertex previous = null;
public final Map<Vertex, Integer> neighbours = new HashMap<>();
public Vertex(String name){
public Vertex(String name) {
this.name = name;
}