MCPcopy Create free account
hub / github.com/ReadyTalk/avian / cleanUp

Method cleanUp

test/ZipOutputStreamTest.java:193–209  ·  view source on GitHub ↗
(List<File> zipFiles)

Source from the content-addressed store, hash-verified

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}

Callers 1

mainMethod · 0.95

Calls 2

existsMethod · 0.80
deleteMethod · 0.45

Tested by

no test coverage detected