(PJEP interp)
| 69 | } |
| 70 | |
| 71 | public synchronized void release(PJEP interp) |
| 72 | { |
| 73 | //System.out.println("releaseJep( " + interp + " )"); |
| 74 | if (usedList.contains(interp)) |
| 75 | { |
| 76 | usedList.remove(interp); |
| 77 | } |
| 78 | else |
| 79 | { |
| 80 | System.err.println("Tried to release a PJEP instance that we did not aquire..."); |
| 81 | } |
| 82 | interp.setParent(null); |
| 83 | freeStack.push(interp); |
| 84 | } |
| 85 | |
| 86 | public synchronized void dumpStats() |
| 87 | { |
no test coverage detected