()
| 48 | } |
| 49 | |
| 50 | @Override |
| 51 | public void close() { |
| 52 | if (path.exists()) { |
| 53 | try { |
| 54 | FileUtils.forceDelete(path); |
| 55 | } catch (Exception e) { |
| 56 | //on windows, the host process still holds lock on the logfile |
| 57 | LOG.info(e.getMessage()); |
| 58 | } |
| 59 | } |
| 60 | } |
| 61 | } |
nothing calls this directly
no test coverage detected