Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c0512e5 authored by Chris Craik's avatar Chris Craik Committed by android-build-merger
Browse files

Merge "Return <0 if undefined Outline radius" into nyc-dev

am: b6692a3a

* commit 'b6692a3a':
  Return <0 if undefined Outline radius
parents eb615f88 b6692a3a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ import android.graphics.drawable.Drawable;
 * @see Drawable#getOutline(Outline)
 */
public final class Outline {
    private static final float RADIUS_UNDEFINED = -1.0f;
    private static final float RADIUS_UNDEFINED = Float.NEGATIVE_INFINITY;

    /** @hide */
    public Path mPath;
@@ -196,11 +196,11 @@ public final class Outline {
    }

    /**
     * Returns the rounded rect radius, if set, or {@code -1} if a path has
     * Returns the rounded rect radius, if set, or a value less than 0 if a path has
     * been set via {@link #setConvexPath(Path)}. A return value of {@code 0}
     * indicates a non-rounded rect.
     *
     * @return the rounded rect radius or {@code -1}
     * @return the rounded rect radius, or value < 0
     */
    public float getRadius() {
        return mRadius;