public void closeQuietly()

in src/main/java/org/apache/maven/shared/jar/JarAnalyzer.java [139:145]


    public void closeQuietly() {
        try {
            jarFile.close();
        } catch (IOException e) {
            // not much we can do about it but ignore it
        }
    }