()
| 110 | } |
| 111 | |
| 112 | private static PlaySound get() { |
| 113 | PlaySound ps = freeList.next; |
| 114 | if (ps == freeList) |
| 115 | return null; |
| 116 | |
| 117 | ps.prev.next = ps.next; |
| 118 | ps.next.prev = ps.prev; |
| 119 | return ps; |
| 120 | } |
| 121 | |
| 122 | private static void add(PlaySound ps) { |
| 123 |
no outgoing calls
no test coverage detected