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

Commit 97124117 authored by Jozef BABJAK's avatar Jozef BABJAK
Browse files

We don't need these local references.

Change-Id: I227c88eb4eb5d2842124e1c944cc18d5b28cccc1
parent 8d25eab1
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.