diff options
| author | 2023-06-02 10:04:34 +0800 | |
|---|---|---|
| committer | 2023-07-07 04:01:17 +0000 | |
| commit | 614f9a99340a0054580f3f9294ad335acf70a467 (patch) | |
| tree | 63d8863666b835e63f5824c4cda408f2b7b53916 | |
| parent | dc180e5e1a0f1036ffc2d3a04f07e5c6f5b36b4a (diff) | |
Cleanup addFoldingStateChangedCallback
Fixes: 284911087
Test: presubmit
Change-Id: Iee45be1631269789acbd97555a50542f9fba9cdd
| -rw-r--r-- | libs/WindowManager/Jetpack/src/androidx/window/extensions/layout/WindowLayoutComponentImpl.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libs/WindowManager/Jetpack/src/androidx/window/extensions/layout/WindowLayoutComponentImpl.java b/libs/WindowManager/Jetpack/src/androidx/window/extensions/layout/WindowLayoutComponentImpl.java index a45a8a183ac8..0059577da39c 100644 --- a/libs/WindowManager/Jetpack/src/androidx/window/extensions/layout/WindowLayoutComponentImpl.java +++ b/libs/WindowManager/Jetpack/src/androidx/window/extensions/layout/WindowLayoutComponentImpl.java @@ -98,14 +98,6 @@ public class WindowLayoutComponentImpl implements WindowLayoutComponent { mTaskFragmentOrganizer = taskFragmentOrganizer; } - /** Registers to listen to {@link CommonFoldingFeature} changes */ - public void addFoldingStateChangedCallback( - java.util.function.Consumer<List<CommonFoldingFeature>> consumer) { - synchronized (mLock) { - mFoldingFeatureProducer.addDataChangedCallback(consumer); - } - } - /** * Adds a listener interested in receiving updates to {@link WindowLayoutInfo} * |