dataOutStream = null;
fileOutStream = null;
}
try {
fileInStream = new BufferedRandomAccessFileInputStream(nodeStorageFile);
dataInStream = new DataInputStream(fileInStream);
} catch (IOException e) {
throw new OsmosisRuntimeException("Unable to open the node data file " + nodeStorageFile + ".", e);
}