Loading graphics/java/android/graphics/Outline.java +3 −3 Original line number Diff line number Diff line Loading @@ -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; Loading Loading @@ -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; Loading Loading
graphics/java/android/graphics/Outline.java +3 −3 Original line number Diff line number Diff line Loading @@ -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; Loading Loading @@ -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; Loading