Skip to content

Commit 60a1f2c

Browse files
committed
removed sorting time
1 parent bdf8360 commit 60a1f2c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/com/example/algorithmvisualizer/AlgVisualizer.java

-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public class AlgVisualizer implements ActionListener, ChangeListener {
3030
private Integer indexComparisons;
3131
private long startTime; // start time of a sort
3232
private long visualizationTime;
33-
private long sortingTime;
3433
private boolean doBubbleSort;
3534
private boolean doInsertionSort;
3635
private boolean doSelectionSort;
@@ -137,7 +136,6 @@ public void reset() {
137136
public void resetTime() {
138137
startTime = 0;
139138
visualizationTime = 0;
140-
sortingTime = 0;
141139
}
142140

143141
public Integer[] initArr() {

0 commit comments

Comments
 (0)