From cbb85a7275155f4fabde0ade8e9590af197a6869 Mon Sep 17 00:00:00 2001 From: Mike Reed Date: Tue, 20 Feb 2018 14:40:37 -0500 Subject: [PATCH] remove deprecated method Bug: skia: Change-Id: Icd5c3b83c97f5039a530f87a3a813e4d9e9f8833 Reviewed-on: https://skia-review.googlesource.com/108662 Commit-Queue: Mike Reed Reviewed-by: Mike Reed --- docs/SkPath_Reference.bmh | 7 ------- include/core/SkPath.h | 7 ------- 2 files changed, 14 deletions(-) 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. *