MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / closeFile

Method closeFile

ij/src/main/java/ij/plugin/AVI_Reader.java:1485–1489  ·  view source on GitHub ↗

tries to close the given file (if not null)

(RandomAccessFile rFile)

Source from the content-addressed store, hash-verified

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;

Callers 3

runMethod · 0.95
makeStackMethod · 0.95
getProcessorMethod · 0.95

Calls 1

closeMethod · 0.65

Tested by

no test coverage detected