From f98e3c06bdf37fa8614b5ebd63ad55fbc39fc1c6 Mon Sep 17 00:00:00 2001 From: rmakynen <43169683+rmakynen@users.noreply.github.com> Date: Tue, 9 Oct 2018 09:09:38 +0300 Subject: [PATCH] Updated brackets --- Others/Dijkstra.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Others/Dijkstra.java b/Others/Dijkstra.java index 4ae2daa58..0fe461348 100644 --- a/Others/Dijkstra.java +++ b/Others/Dijkstra.java @@ -63,7 +63,7 @@ class Graph { public Vertex previous = null; public final Map neighbours = new HashMap<>(); - public Vertex(String name){ + public Vertex(String name) { this.name = name; }