(String name)
| 98 | private final byte[] copyEntryBuffer = new byte[8 * 1024]; |
| 99 | |
| 100 | public void putNextEntry(String name) throws IOException { |
| 101 | putNextEntry(new CenterFileHeader(name)); |
| 102 | } |
| 103 | |
| 104 | public void putNextEntry(ZipEntry ze) throws IOException { |
| 105 | putNextEntry(new CenterFileHeader(ze)); |
no test coverage detected