Merge "Fix documentation of Outline#setRect(int, int, int, int)"

This commit is contained in:
Christos Gkekas
2022-01-11 11:54:51 +00:00
committed by Gerrit Code Review

View File

@@ -169,8 +169,7 @@ public final class Outline {
} }
/** /**
* Sets the Outline to the rounded rect defined by the input rect, and * Sets the Outline to the rect defined by the input coordinates.
* corner radius.
*/ */
public void setRect(int left, int top, int right, int bottom) { public void setRect(int left, int top, int right, int bottom) {
setRoundRect(left, top, right, bottom, 0.0f); 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> * <p>
* Passing a zero radius is equivalent to calling {@link #setRect(int, int, int, int)} * Passing a zero radius is equivalent to calling {@link #setRect(int, int, int, int)}
*/ */