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

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

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

View File

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