(String path)
| 1776 | |
| 1777 | // Non-static impl methods exist for mocking purposes. |
| 1778 | protected void forceDeleteImpl(String path) throws IOException { |
| 1779 | LOG.debug("Deleting path {}", path); |
| 1780 | if (checkFileExists(path)) { |
| 1781 | try { |
| 1782 | FileUtils.forceDelete(new File(path)); |
| 1783 | } catch (FileNotFoundException ignored) { |
| 1784 | //ignore |
| 1785 | } |
| 1786 | } |
| 1787 | } |
| 1788 | |
| 1789 | // Non-static impl methods exist for mocking purposes. |
| 1790 | public UptimeComputer makeUptimeComputerImpl() { |
no test coverage detected