Merge "Remove @Nullable annotation for onConfigurationChanged." into tm-qpr-dev am: 05fafde8c8 am: 2c450d9930

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

Change-Id: I2187596fed6de7827bed75b663071245e5a86c6e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
TreeHugger Robot
2022-11-28 23:19:31 +00:00
committed by Automerger Merge Worker

View File

@@ -146,7 +146,7 @@ public abstract class WindowProviderService extends Service implements WindowPro
@SuppressLint("OnNameExpected")
@Override
public void onConfigurationChanged(@Nullable Configuration configuration) {
public void onConfigurationChanged(@NonNull Configuration configuration) {
// This is only called from WindowTokenClient.
mCallbacksController.dispatchConfigurationChanged(configuration);
}