Revert "Stream test"

This commit is contained in:
eugenefischer
2020-06-11 14:03:27 -05:00
committed by GitHub
parent 87cf8a3e05
commit 435a9ef718
12 changed files with 47 additions and 88 deletions

View File

@@ -2,8 +2,8 @@ package Sorting;
public class SelectionSorter extends Sorter {
//a class to sort an array of numbers using selection sort
public SelectionSorter(RandomNumberFileReader reader){
super("selection sort", reader);
public SelectionSorter(String filename){
super("selection sort", filename);
}
void sort(){