Skip to content

Commit e5d0aac

Browse files
author
alxkm
committed
refactor: fix constructor access
1 parent 575c579 commit e5d0aac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/dynamicprogramming/FordFulkerson.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
public final class FordFulkerson {
77
private static final int INF = Integer.MAX_VALUE;
88

9-
public FordFulkerson() {
9+
private FordFulkerson() {
1010
}
1111

1212
public static int networkFlow(int vertexCount, int[][] capacity, int[][] flow, int source, int sink) {

0 commit comments

Comments
 (0)