Checks if file is closed and throws an exception.
()
| 210 | * Checks if file is closed and throws an exception. |
| 211 | */ |
| 212 | private void checkClosed() |
| 213 | { |
| 214 | if (closed) |
| 215 | throw new IllegalStateException("ZipFile has closed: " + name); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Read the central directory of a zip file and fill the entries |
no outgoing calls
no test coverage detected