Index: src/pathops/SkPathOpsLine.cpp |
diff --git a/src/pathops/SkPathOpsLine.cpp b/src/pathops/SkPathOpsLine.cpp |
index 1b548fcd30b20e4f59729808239585a37095fb2c..1e74123abf64c6bf4a8535e8c5af90c96f871293 100644 |
--- a/src/pathops/SkPathOpsLine.cpp |
+++ b/src/pathops/SkPathOpsLine.cpp |
@@ -152,8 +152,6 @@ double SkDLine::NearPointH(const SkDPoint& xy, double left, double right, double |
if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance? |
return -1; |
} |
- t = SkPinT(t); |
- SkASSERT(between(0, t, 1)); |
return t; |
} |
@@ -189,8 +187,6 @@ double SkDLine::NearPointV(const SkDPoint& xy, double top, double bottom, double |
if (!AlmostEqualUlps(largest, largest + dist)) { // is the dist within ULPS tolerance? |
return -1; |
} |
- t = SkPinT(t); |
- SkASSERT(between(0, t, 1)); |
return t; |
} |