Frees memory by deleting a few slices from the end of the stack.
()
| 392 | |
| 393 | /** Frees memory by deleting a few slices from the end of the stack. */ |
| 394 | public void trim() { |
| 395 | int n = (int)Math.round(Math.log(nSlices)+1.0); |
| 396 | for (int i=0; i<n; i++) { |
| 397 | deleteLastSlice(); |
| 398 | System.gc(); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | public String toString() { |
| 403 | String v = isVirtual()?"(V)":""; |
no test coverage detected