Remove unused SK_DISABLE_ARC_TO_LINE_TO_CHECK build flag

Change-Id: Ibcdb8c53a95a135a8686b3fe22df5a9d32e939c7
Reviewed-on: https://skia-review.googlesource.com/126060
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp
index 497037a..510efd6 100644
--- a/src/core/SkPath.cpp
+++ b/src/core/SkPath.cpp
@@ -1309,14 +1309,9 @@
     // arcs from the same oval.
     auto addPt = [&forceMoveTo, this](const SkPoint& pt) {
         SkPoint lastPt;
-#ifdef SK_DISABLE_ARC_TO_LINE_TO_CHECK
-        static constexpr bool kSkipLineToCheck = true;
-#else
-        static constexpr bool kSkipLineToCheck = false;
-#endif
         if (forceMoveTo) {
             this->moveTo(pt);
-        } else if (kSkipLineToCheck || !this->getLastPt(&lastPt) ||
+        } else if (!this->getLastPt(&lastPt) ||
                    !SkScalarNearlyEqual(lastPt.fX, pt.fX) ||
                    !SkScalarNearlyEqual(lastPt.fY, pt.fY)) {
             this->lineTo(pt);