From 00771c3010f64e714c133afa4c75e50373a33e4e Mon Sep 17 00:00:00 2001 From: Jordan Demeulenaere Date: Mon, 20 Feb 2023 09:58:52 +0000 Subject: [PATCH] Fix outdated LaunchableView documentation The documentation was slightly outdated since this interface was changed in http://ag/20946885. Bug: 264728445 Change-Id: Ia86c71f38c75ab02b4f3970406f7d4f1adfd444d Test: N/A --- .../src/com/android/systemui/animation/LaunchableView.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/SystemUI/animation/src/com/android/systemui/animation/LaunchableView.kt b/packages/SystemUI/animation/src/com/android/systemui/animation/LaunchableView.kt index 774255be4007a..b98b92219c336 100644 --- a/packages/SystemUI/animation/src/com/android/systemui/animation/LaunchableView.kt +++ b/packages/SystemUI/animation/src/com/android/systemui/animation/LaunchableView.kt @@ -35,8 +35,7 @@ interface LaunchableView { * * Note that calls to [View.setTransitionVisibility] shouldn't be blocked. * - * @param block whether we should block/postpone all calls to `setVisibility` and - * `setTransitionVisibility`. + * @param block whether we should block/postpone all calls to `setVisibility`. */ fun setShouldBlockVisibilityChanges(block: Boolean) }