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

Commit 1a99502b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix SoftInputShowHideHistory entry seq number representation" into...

Merge "Fix SoftInputShowHideHistory entry seq number representation" into rvc-dev am: adf530fc am: 1929d51f am: c4ddc308 am: 45bf5a00

Change-Id: Ie3e9ff87dc17f2456930d95903034a31b7976282
parents 1d52ba7e 45bf5a00
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -784,6 +784,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
        private static final AtomicInteger sSequenceNumber = new AtomicInteger(0);

        private static final class Entry {
            final int mSequenceNumber = sSequenceNumber.getAndIncrement();
            final ClientState mClientState;
            @SoftInputModeFlags
            final int mFocusedWindowSoftInputMode;
@@ -831,7 +832,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
                    continue;
                }
                pw.print(prefix);
                pw.println("SoftInputShowHideHistory #" + sSequenceNumber.getAndIncrement() + ":");
                pw.println("SoftInputShowHideHistory #" + entry.mSequenceNumber + ":");

                pw.print(prefix);
                pw.println(" time=" + dataFormat.format(new Date(entry.mWallTime))