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

Commit 27fe57d5 authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Have ControlledInputConnectionWrapper#toString()."

parents b68be013 12d66c2c
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -540,6 +540,13 @@ public final class InputMethodManager {
        void deactivate() {
            mActive = false;
        }

        @Override
        public String toString() {
            return "ControlledInputConnectionWrapper{mActive=" + mActive
                    + " mParentInputMethodManager.mActive=" + mParentInputMethodManager.mActive
                    + "}";
        }
    }
    
    final IInputMethodClient.Stub mClient = new IInputMethodClient.Stub() {