diff options
| author | 2022-01-11 11:54:51 +0000 | |
|---|---|---|
| committer | 2022-01-11 11:54:51 +0000 | |
| commit | 2a3830faabb4eeb03f47b7796b0c262cddab1fd2 (patch) | |
| tree | 1f5407f695488f52f0a063114516beaed5f20129 | |
| parent | eaa3fc76a838746655270f040d1c8a45d5e567e1 (diff) | |
| parent | 352474073572208b3e4fb58e47a500099a33c4b7 (diff) | |
Merge "Fix documentation of Outline#setRect(int, int, int, int)"
| -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)} */ |