Merge "[errorprone] Don't throw exception in finally"

This commit is contained in:
David Pursehouse 2019-10-25 21:56:06 -04:00 committed by Gerrit Code Review @ Eclipse.org
commit 078500ef1c
1 changed files with 1 additions and 1 deletions

View File

@ -844,7 +844,7 @@ private void detectSymlinkSupport() {
try {
FileUtils.delete(tempFile);
} catch (IOException e) {
throw new RuntimeException(e); // panic
LOG.error(JGitText.get().cannotDeleteFile, tempFile);
}
}
}