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

Commit a31d31ca authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove @Deprecated from Path.computeBounds(RectF, boolean)" into main...

Merge "Remove @Deprecated from Path.computeBounds(RectF, boolean)" into main am: 43d9d366 am: f54003ae

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3376212



Change-Id: I212ec2e7e3a58302e81a1a6c6df33064d8e6eae9
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 99ce1258 f54003ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17082,7 +17082,7 @@ package android.graphics {
    method public void arcTo(@NonNull android.graphics.RectF, float, float);
    method public void arcTo(float, float, float, float, float, float, boolean);
    method public void close();
    method @Deprecated public void computeBounds(@NonNull android.graphics.RectF, boolean);
    method public void computeBounds(@NonNull android.graphics.RectF, boolean);
    method @FlaggedApi("com.android.graphics.flags.exact_compute_bounds") public void computeBounds(@NonNull android.graphics.RectF);
    method public void conicTo(float, float, float, float, float);
    method public void cubicTo(float, float, float, float, float, float);
+0 −3
Original line number Diff line number Diff line
@@ -301,10 +301,7 @@ public class Path {
     *
     * @param bounds Returns the computed bounds of the path's control points.
     * @param exact This parameter is no longer used.
     *
     * @deprecated use computeBounds(RectF) instead
     */
    @Deprecated
    @SuppressWarnings({"UnusedDeclaration"})
    public void computeBounds(@NonNull RectF bounds, boolean exact) {
        computeBounds(bounds);