public void close()

in src/main/java/org/apache/commons/csv/CSVPrinter.java [129:136]


    public void close(final boolean flush) throws IOException {
        if (flush || format.getAutoFlush()) {
            flush();
        }
        if (appendable instanceof Closeable) {
            ((Closeable) appendable).close();
        }
    }