()
| 330 | public static void showLogInvokeLater() { |
| 331 | Runnable doLater = new Runnable() { |
| 332 | @Override |
| 333 | public void run() { |
| 334 | showLog(); |
| 335 | } |
| 336 | |
| 337 | }; |
| 338 | java.awt.EventQueue.invokeLater(doLater); |
nothing calls this directly
no test coverage detected