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

Commit 5f5f20fd authored by An An Yu's avatar An An Yu
Browse files

Remove @Nullable annotation for onConfigurationChanged.

Test: none

Bug: 237342281
Change-Id: Ia9e971152b7e297a78d79cbb79690f66d3029c9f
parent 9bb27a05
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);
    }