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 NumberBubbleSorter extends NumberSorter{
public class NumberBubbleSorter extends Sorter{
//a class to sort arrays of numbers using bubble sort
public NumberBubbleSorter(RandomNumberFileReader reader){