diff --git a/docs/SkPath_Reference.bmh b/docs/SkPath_Reference.bmh index a473e9f1a4..0912a45e34 100644 --- a/docs/SkPath_Reference.bmh +++ b/docs/SkPath_Reference.bmh @@ -1126,13 +1126,6 @@ void draw(SkCanvas* canvas) { ## -# ------------------------------------------------------------------------------ - -#Method void setIsConvex(bool isConvex) -#Deprecated -Use setConvexity. -## - #Subtopic Convexity ## # ------------------------------------------------------------------------------ diff --git a/include/core/SkPath.h b/include/core/SkPath.h index 5fc406ae92..8e74a0b63e 100644 --- a/include/core/SkPath.h +++ b/include/core/SkPath.h @@ -272,13 +272,6 @@ public: return kConvex_Convexity == this->getConvexity(); } - /** Deprecated. Use setConvexity(). - */ - SK_ATTR_DEPRECATED("use setConvexity") - void setIsConvex(bool isConvex) { - this->setConvexity(isConvex ? kConvex_Convexity : kConcave_Convexity); - } - /** * Returns true if this path is recognized as an oval or circle. *