private void closeQuietly()

in src/main/java/org/apache/sling/scripting/sightly/js/impl/JsEnvironment.java [141:147]


    private void closeQuietly(Closeable closeable) {
        try {
            closeable.close();
        } catch (Exception e) {
            // ignore
        }
    }