Skip to content

Commit ecfbadc

Browse files
committed
Update Cycles.java
removing unused member variable finalCycles
1 parent c480377 commit ecfbadc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DataStructures/Graphs/Cycles.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Cycle {
1010
private int[][] adjacencyMatrix;
1111
private boolean[] visited;
1212
ArrayList<ArrayList<Integer>> cycles = new ArrayList<ArrayList<Integer>>();
13-
private boolean[] finalCycles;
13+
1414

1515
public Cycle() {
1616
Scanner in = new Scanner(System.in);

0 commit comments

Comments
 (0)