(ZipOutputStream zos, File dir)
| 1258 | |
| 1259 | |
| 1260 | protected void addClasses(ZipOutputStream zos, File dir) throws IOException { |
| 1261 | String path = dir.getAbsolutePath(); |
| 1262 | if (!path.endsWith("/") && !path.endsWith("\\")) { |
| 1263 | path += '/'; |
| 1264 | } |
| 1265 | // System.out.println("path is " + path); |
| 1266 | addClasses(zos, dir, path); |
| 1267 | } |
| 1268 | |
| 1269 | |
| 1270 | protected void addClasses(ZipOutputStream zos, File dir, String rootPath) throws IOException { |
no test coverage detected