()
| 83 | |
| 84 | ServerStatusThread = new Thread( new Runnable() { |
| 85 | public void run() { |
| 86 | for(;;) |
| 87 | { |
| 88 | try { |
| 89 | runOnUiThread( new Runnable() { |
| 90 | public void run() { |
| 91 | UpdateServerStatus(); |
| 92 | } |
| 93 | }); |
| 94 | Thread.sleep(1000); |
| 95 | } catch (InterruptedException e) { |
| 96 | } |
| 97 | } |
| 98 | } |
| 99 | }); |
| 100 | ServerStatusThread.start(); |
| 101 |
nothing calls this directly
no test coverage detected