Calls the close() method when this ZipFile has not yet been explicitly closed.
()
| 317 | * been explicitly closed. |
| 318 | */ |
| 319 | protected void finalize() throws IOException |
| 320 | { |
| 321 | if (!closed && rrf != null) close(); |
| 322 | } |
| 323 | |
| 324 | // /** |
| 325 | // * Returns an enumeration of all Zip entries in this Zip file. |