()
| 104 | SwingUtilities.invokeLater(new Runnable() { |
| 105 | |
| 106 | @Override |
| 107 | public void run() { |
| 108 | try { |
| 109 | Thread.sleep(1000); |
| 110 | } catch (InterruptedException e) { |
| 111 | // ignore |
| 112 | } |
| 113 | if (channel.isConnected()) { |
| 114 | NetworkMonitor.this.message(tr("connected!") + '\n'); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | }); |
| 119 | } |
nothing calls this directly
no test coverage detected