()
| 121 | Runnable task = new Runnable() { |
| 122 | |
| 123 | public void run() { |
| 124 | try { |
| 125 | |
| 126 | updateSync(packet); |
| 127 | } catch (Exception e) { |
| 128 | |
| 129 | errWithStackTrace(e); |
| 130 | } |
| 131 | } |
| 132 | }; |
| 133 | executor.execute(task); |
| 134 | } |
nothing calls this directly
no test coverage detected