aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPath.h
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-02-20 14:40:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-02-20 21:41:44 +0000
commitcbb85a7275155f4fabde0ade8e9590af197a6869 (patch)
treed2fd92dee34e5f1bd4d709b440998255b0498402 /include/core/SkPath.h
parentf3690dd416a1ff63868dd886c0c08b7698c5dd1f (diff)
remove deprecated method
Bug: skia: Change-Id: Icd5c3b83c97f5039a530f87a3a813e4d9e9f8833 Reviewed-on: https://skia-review.googlesource.com/108662 Commit-Queue: Mike Reed <reed@google.com> Reviewed-by: Mike Reed <reed@google.com>
Diffstat (limited to 'include/core/SkPath.h')
-rw-r--r--include/core/SkPath.h7
1 files changed, 0 insertions, 7 deletions
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.
*