Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5157dcc0 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove @Nullable annotation for onConfigurationChanged." into...

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

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



Change-Id: I2187596fed6de7827bed75b663071245e5a86c6e
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 1dee913a 2c450d99
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
    }