remove unused static function

git-svn-id: http://skia.googlecode.com/svn/trunk@12378 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/PathOpsCubicReduceOrderTest.cpp b/tests/PathOpsCubicReduceOrderTest.cpp
index 3702ead..54ff541 100644
--- a/tests/PathOpsCubicReduceOrderTest.cpp
+++ b/tests/PathOpsCubicReduceOrderTest.cpp
@@ -40,6 +40,7 @@
             && approximately_equal(cubic[maxY].fY, cubic[minY].fY);
 }
 
+#if 0 // disable test until stroke reduction is supported
 static void find_tight_bounds(const SkDCubic& cubic, SkDRect& bounds) {
     SkDCubicPair cubicPair = cubic.chopAt(0.5);
     if (!tiny(cubicPair.first()) && !controls_inside(cubicPair.first())) {
@@ -55,6 +56,7 @@
         bounds.add(cubicPair.second()[3]);
     }
 }
+#endif
 
 static void PathOpsReduceOrderCubicTest(skiatest::Reporter* reporter) {
     size_t index;