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

@@ -5,8 +5,8 @@ package Sorting;
public class InsertionSorter extends Sorter{
public InsertionSorter(RandomNumberFileReader reader){
super("insertion sort", reader);
public InsertionSorter(String filename){
super("insertion sort", filename);
}
void sort(){