diff options
| author | 2022-01-11 12:37:49 +0000 | |
|---|---|---|
| committer | 2022-01-11 12:37:49 +0000 | |
| commit | 3f33f3d178b0adc2afb0b4e3fc42b6a9f5882402 (patch) | |
| tree | a60619a4341e03dabf194eb1498c9c4ad7a0e55f /graphics/java | |
| parent | 3c0d514eaba30458e44aad43bee4f5b7ce86924b (diff) | |
| parent | 4e95f53863c2ea81da6638aba03b576199d90988 (diff) | |
Merge "Fix documentation of Outline#setRect(int, int, int, int)" am: 2a3830faab am: 5cb92ff104 am: 4e95f53863
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1904030
Change-Id: Ifed9baa2297d1d3ed492c7f8f79c7d15c6f1d843
Diffstat (limited to 'graphics/java')
| -rw-r--r-- | graphics/java/android/graphics/Outline.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/graphics/java/android/graphics/Outline.java b/graphics/java/android/graphics/Outline.java index 5858e3988486..a8a66403cd79 100644 --- a/graphics/java/android/graphics/Outline.java +++ b/graphics/java/android/graphics/Outline.java @@ -169,8 +169,7 @@ public final class Outline { } /** - * Sets the Outline to the rounded rect defined by the input rect, and - * corner radius. + * Sets the Outline to the rect defined by the input coordinates. */ public void setRect(int left, int top, int right, int bottom) { setRoundRect(left, top, right, bottom, 0.0f); @@ -184,7 +183,7 @@ public final class Outline { } /** - * Sets the Outline to the rounded rect defined by the input rect, and corner radius. + * Sets the Outline to the rounded rect defined by the input coordinates and corner radius. * <p> * Passing a zero radius is equivalent to calling {@link #setRect(int, int, int, int)} */ |