(List<File> zipFiles)
| 191 | } |
| 192 | |
| 193 | private static void cleanUp(List<File> zipFiles) |
| 194 | { |
| 195 | try |
| 196 | { |
| 197 | for (File f : zipFiles) |
| 198 | { |
| 199 | if (f.exists()) |
| 200 | { |
| 201 | f.delete(); |
| 202 | } |
| 203 | } |
| 204 | } |
| 205 | catch (Exception e) |
| 206 | { |
| 207 | throw new RuntimeException(e); |
| 208 | } |
| 209 | } |
| 210 | } |