()
| 37 | private HashMap<String, Long> pollMap = new HashMap<>(); |
| 38 | |
| 39 | public static PollQueue getSelf() { |
| 40 | if (self == null) { |
| 41 | synchronized (PollQueue.class) { |
| 42 | self = new PollQueue(); |
| 43 | } |
| 44 | } |
| 45 | return self; |
| 46 | } |
| 47 | |
| 48 | private LinkedList<Link> queue = new LinkedList<Link>(); |
| 49 |
no outgoing calls
no test coverage detected