in src/main/java/org/apache/maven/plugins/assembly/io/FileLocation.java [56:72]
public void close() {
if ((channel != null) && channel.isOpen()) {
try {
channel.close();
} catch (IOException e) {
// swallow it.
}
}
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
// swallow it.
}
}
}