TestResourceLocalizationService.testPublicResourceInitializesLocalDir fails Intermittently due to IllegalArgumentException from cleanup (templedf via rkanter)

(cherry picked from commit 22ca176dfe)
This commit is contained in:
Robert Kanter 2016-03-15 10:05:10 -07:00
parent 8b00d9de25
commit da24fde333
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ public void cleanup() throws IOException {
conf = null; conf = null;
try { try {
FileUtils.deleteDirectory(new File(basedir.toString())); FileUtils.deleteDirectory(new File(basedir.toString()));
} catch (IOException e) { } catch (IOException | IllegalArgumentException e) {
// ignore // ignore
} }
} }