(ZipOutputStream zos, File dir)
| 1160 | |
| 1161 | |
| 1162 | protected void addClasses(ZipOutputStream zos, File dir) throws IOException { |
| 1163 | String path = dir.getAbsolutePath(); |
| 1164 | if (!path.endsWith("/") && !path.endsWith("\\")) { |
| 1165 | path += '/'; |
| 1166 | } |
| 1167 | // System.out.println("path is " + path); |
| 1168 | addClasses(zos, dir, path); |
| 1169 | } |
| 1170 | |
| 1171 | |
| 1172 | protected void addClasses(ZipOutputStream zos, File dir, String rootPath) throws IOException { |
no test coverage detected