()
| 684 | pointerPressedTimerTask = |
| 685 | new TimerTask() { |
| 686 | public void run() { |
| 687 | try { |
| 688 | processPointerPressed(x, y); |
| 689 | } catch (Throwable t) { |
| 690 | //#debug |
| 691 | AlbiteMIDlet.LOGGER.log(t); |
| 692 | } |
| 693 | |
| 694 | pointerPressedReady = true; |
| 695 | } |
| 696 | }; |
| 697 | timer.schedule(pointerPressedTimerTask, 0); |
| 698 | } |
nothing calls this directly
no test coverage detected