From 790631a15d8d0696cb28f478b5fcafe43b80411c Mon Sep 17 00:00:00 2001 From: John Reck Date: Mon, 25 Nov 2024 23:43:24 +0000 Subject: Remove @Deprecated from Path.computeBounds(RectF, boolean) This is too aggressive a signal, and the replacement method lacks sufficient availability for this to be actionable yet Bug: 216813597 Change-Id: I6eac9a18de9e7c71896cde1777d91edff8405333 Test: n/a Flag: com.android.graphics.flags.exact_compute_bounds --- graphics/java/android/graphics/Path.java | 3 --- 1 file changed, 3 deletions(-) (limited to 'graphics/java') diff --git a/graphics/java/android/graphics/Path.java b/graphics/java/android/graphics/Path.java index 073307c7a2e8..d010c525e099 100644 --- a/graphics/java/android/graphics/Path.java +++ b/graphics/java/android/graphics/Path.java @@ -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); -- cgit v1.2.3-59-g8ed1b