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

Commit 81172d0c authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Remove redundant assignment operation." into main

parents 34001f4c 8aaf798a
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -287,11 +287,10 @@ class WindowContextListenerController {
        }

        private void register(boolean shouldDispatchConfig) {
            final IBinder token = mClientToken;
            if (mDeathRecipient == null) {
                throw new IllegalStateException("Invalid client token: " + token);
                throw new IllegalStateException("Invalid client token: " + mClientToken);
            }
            mListeners.putIfAbsent(token, this);
            mListeners.putIfAbsent(mClientToken, this);
            mContainer.registerWindowContainerListener(this, shouldDispatchConfig);
        }