()
| 182 | |
| 183 | private static final class TosserTask extends TimerTask { |
| 184 | @Override |
| 185 | public void run() { |
| 186 | try { |
| 187 | TosserQueue.getInstanse().toss(); |
| 188 | } catch (RuntimeException e) { |
| 189 | logger.l1("Error while tossing", e); |
| 190 | } |
| 191 | } |
| 192 | |
| 193 | } |
| 194 |
nothing calls this directly
no test coverage detected