(LockNode node)
| 27 | } |
| 28 | |
| 29 | public void remove(LockNode node) { |
| 30 | children.remove(node); |
| 31 | } |
| 32 | |
| 33 | /* Check for a cycle by doing a depth-first-search. */ |
| 34 | public boolean hasCycle(Hashtable<Integer, Boolean> touchedNodes) { |
no outgoing calls
no test coverage detected