removing unused import

This commit is contained in:
2020-07-03 17:13:49 -05:00
parent d66fdedcde
commit a3a68854eb

View File

@@ -1,10 +1,9 @@
package Sorting;
import java.util.Scanner;
import java.util.ArrayList;
import java.util.InputMismatchException;
//import java.time.temporal.ChronoUnit;
/**
* This class contains the main method and presents an interface for the user to
* compare sorting algorithm efficiencies. The user will be able to generate files
@@ -257,7 +256,6 @@ public class AlgorithmTester{
results.add(inSorter.measuredSort());
}
if(quick){
//put wordquicksorter here
Sorter qSorter = new WordQuickSorter(reader);
results.add(qSorter.measuredSort());
}