()
| 132 | public void setVisible(final boolean visible) { |
| 133 | new Thread(new Runnable() { |
| 134 | public void run() { |
| 135 | while (!ready) { |
| 136 | try { |
| 137 | Thread.sleep(5); |
| 138 | } catch (InterruptedException e) { |
| 139 | e.printStackTrace(); |
| 140 | } |
| 141 | } |
| 142 | WebFrame.super.setVisible(visible); |
| 143 | } |
| 144 | }).start(); |
| 145 | } |
| 146 |
nothing calls this directly
no test coverage detected