()
| 30 | public class TimerPoll extends TimerTask { |
| 31 | |
| 32 | @Override |
| 33 | public void run() { |
| 34 | for (Link l : ORMManager.get(Link.class).getAll()) { |
| 35 | if (FtnTools.getOptionBooleanDefTrue(l, |
| 36 | LinkOption.BOOLEAN_POLL_BY_TIMEOT)) { |
| 37 | PollQueue.getSelf().add(l); |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | } |
nothing calls this directly
no test coverage detected