diff options
| author | 2021-11-26 14:48:32 +0000 | |
|---|---|---|
| committer | 2022-01-10 18:37:11 +0000 | |
| commit | 352474073572208b3e4fb58e47a500099a33c4b7 (patch) | |
| tree | cdbebf0fbbd52e747bc309a0fb5b5a4a245af116 /graphics/java | |
| parent | 67bf96eac96a88ccdf4aeaa92beaf2a35af8c08f (diff) | |
Fix documentation of Outline#setRect(int, int, int, int)
Change-Id: I15a5e2fe07aea78a5fa72f472011ecda63abf813
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)} */ |