()
| 24 | window.setTextInputClient(this); |
| 25 | timerTask = new TimerTask() { |
| 26 | public void run() { |
| 27 | cursorDraw = !cursorDraw; |
| 28 | App.runOnUIThread(() -> { if (!window.isClosed()) window.requestFrame(); }); |
| 29 | } |
| 30 | }; |
| 31 | timer.schedule(timerTask, 0, 500); |
| 32 | } |
nothing calls this directly
no test coverage detected