removing unused import
This commit is contained in:
@@ -1,10 +1,9 @@
|
|||||||
package Sorting;
|
package Sorting;
|
||||||
|
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.InputMismatchException;
|
import java.util.InputMismatchException;
|
||||||
//import java.time.temporal.ChronoUnit;
|
|
||||||
/**
|
/**
|
||||||
* This class contains the main method and presents an interface for the user to
|
* 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
|
* compare sorting algorithm efficiencies. The user will be able to generate files
|
||||||
@@ -257,7 +256,6 @@ public class AlgorithmTester{
|
|||||||
results.add(inSorter.measuredSort());
|
results.add(inSorter.measuredSort());
|
||||||
}
|
}
|
||||||
if(quick){
|
if(quick){
|
||||||
//put wordquicksorter here
|
|
||||||
Sorter qSorter = new WordQuickSorter(reader);
|
Sorter qSorter = new WordQuickSorter(reader);
|
||||||
results.add(qSorter.measuredSort());
|
results.add(qSorter.measuredSort());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user