hotspot/src/share/vm/utilities/quickSort.cpp
changeset 11247 d6faa02b3802
parent 10994 fc93bca9c720
child 17026 72b2233861f1
--- a/hotspot/src/share/vm/utilities/quickSort.cpp	Fri Dec 09 19:28:34 2011 -0800
+++ b/hotspot/src/share/vm/utilities/quickSort.cpp	Wed Dec 14 12:15:26 2011 +0100
@@ -93,8 +93,7 @@
   return compare_arrays(arrayToSort, expectedResult, length);
 }
 
-bool QuickSort::test_quick_sort() {
-  tty->print_cr("test_quick_sort");
+void QuickSort::test_quick_sort() {
   {
     int* test_array = NULL;
     int* expected_array = NULL;
@@ -214,7 +213,6 @@
     delete[] test_array;
     delete[] expected_array;
   }
-  return true;
 }
 
 #endif