tries to close the given file (if not null)
(RandomAccessFile rFile)
| 1483 | |
| 1484 | /** tries to close the given file (if not null) */ |
| 1485 | private void closeFile(RandomAccessFile rFile) { |
| 1486 | if (rFile != null) try { |
| 1487 | rFile.close(); |
| 1488 | } catch (Exception e) {} |
| 1489 | } |
| 1490 | |
| 1491 | private void error(String msg) { |
| 1492 | aborting = true; |
no test coverage detected