Skip to content

Commit e8da759

Browse files
committed
update path
1 parent 7a0804f commit e8da759

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/com/thealgorithms/searches/Dijkstras.java renamed to src/main/java/com/thealgorithms/graph/Dijkstras.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.thealgorithms.searches; // update to match path; change back if you intend 'com.thealgorithms.graphs'
1+
package com.thealgorithms.graphs;
22

33
import java.util.List;
44
import java.util.Arrays;
@@ -15,7 +15,6 @@
1515
*/
1616
public final class Dijkstras {
1717

18-
// Hide utility-class constructor
1918
private Dijkstras() {
2019
throw new AssertionError("Cannot instantiate utility class");
2120
}

0 commit comments

Comments
 (0)