in src/main/java/org/apache/maven/shared/io/location/FileLocation.java [115:122]
public void open() throws IOException {
if (stream == null) {
initFile();
stream = new FileInputStream(file);
channel = stream.getChannel();
}
}