()
| 74 | if (Display.getInstance().isEdt()) { |
| 75 | Display.getInstance().invokeAndBlock(new Runnable() { |
| 76 | @Override |
| 77 | public void run() { |
| 78 | try { |
| 79 | Thread.sleep(millis); |
| 80 | } catch (InterruptedException ex) { |
| 81 | } |
| 82 | } |
| 83 | }); |
| 84 | } else { |
| 85 | try { |
nothing calls this directly
no test coverage detected