fix example
[fanfix.git] / src / jexer / TTerminalWindow.java
index b55e7b05bc1137600ea337cb71acc2ba29976b87..897dca73cdf376fff4d6aace269ba48396456f35 100644 (file)
@@ -789,7 +789,7 @@ public class TTerminalWindow extends TScrollableWindow
         // thread.
         synchronized (emulator) {
             setHiddenMouse(emulator.hasHiddenMousePointer());
-            
+
             setCursorX(emulator.getCursorX() + 1);
             setCursorY(emulator.getCursorY() + 1
                 + (getHeight() - 2 - emulator.getHeight())
@@ -854,7 +854,7 @@ public class TTerminalWindow extends TScrollableWindow
      * @param mouse a mouse-based event
      * @return whether or not the mouse is on the emulator
      */
-    private final boolean mouseOnEmulator(final TMouseEvent mouse) {
+    private boolean mouseOnEmulator(final TMouseEvent mouse) {
 
         synchronized (emulator) {
             if (!emulator.isReading()) {