refactor to use polymorphism

This commit is contained in:
2020-06-17 22:15:00 -05:00
parent fe9000267a
commit 5d9c8ebde6
14 changed files with 82 additions and 152 deletions

View File

@@ -1,6 +1,6 @@
package Sorting;
public class WordSelectionSorter extends WordSorter{
public class WordSelectionSorter extends Sorter{
public WordSelectionSorter(RandomWordFileReader reader){
super("selection sort", reader);