From c67a2f25d518506cfca054db6dd2d734c6a61cce Mon Sep 17 00:00:00 2001 From: Eugene Fischer Date: Mon, 8 Jun 2020 15:39:01 -0500 Subject: [PATCH] removing extraneous override --- Sorting/QuickSorterThreeWay.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sorting/QuickSorterThreeWay.java b/Sorting/QuickSorterThreeWay.java index db5a7dc..6d7fa1c 100644 --- a/Sorting/QuickSorterThreeWay.java +++ b/Sorting/QuickSorterThreeWay.java @@ -4,15 +4,15 @@ package Sorting; * an implementation of quick sort with three-way partitioning */ -public class QuickSorterThreeWay extends Sorter{ +public class QuickSorterThreeWay extends QuickSorter{ public QuickSorterThreeWay(String filename){ super("quick sort (3-way partition)", filename); } - + /* void sort(){ quickSort(0,numbers.length-1); - } + }*/ void quickSort(int lowIndex, int highIndex){ if(compare(lowIndex,highIndex)<0){