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

Commit 1e29552b authored by Conley Owens's avatar Conley Owens Committed by Android Code Review
Browse files

Merge "We don't need these local references."

parents da882181 97124117
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -116,7 +116,7 @@ public class MultiTapKeyListener extends BaseKeyListener
                    content.replace(selStart, selEnd,
                                    String.valueOf(current).toUpperCase());
                    removeTimeouts(content);
                    Timeout t = new Timeout(content);
                    new Timeout(content); // for its side effects

                    return true;
                }
@@ -124,7 +124,7 @@ public class MultiTapKeyListener extends BaseKeyListener
                    content.replace(selStart, selEnd,
                                    String.valueOf(current).toLowerCase());
                    removeTimeouts(content);
                    Timeout t = new Timeout(content);
                    new Timeout(content); // for its side effects

                    return true;
                }
@@ -140,7 +140,7 @@ public class MultiTapKeyListener extends BaseKeyListener

                    content.replace(selStart, selEnd, val, ix, ix + 1);
                    removeTimeouts(content);
                    Timeout t = new Timeout(content);
                    new Timeout(content); // for its side effects

                    return true;
                }
@@ -206,7 +206,7 @@ public class MultiTapKeyListener extends BaseKeyListener
            }

            removeTimeouts(content);
            Timeout t = new Timeout(content);
            new Timeout(content); // for its side effects

            // Set up the callback so we can remove the timeout if the
            // cursor moves.