in src/main/java/org/apache/commons/csv/CSVPrinter.java [141:148]
public void close(final boolean flush) throws IOException {
if (flush || format.getAutoFlush()) {
flush();
}
if (appendable instanceof Closeable) {
((Closeable) appendable).close();
}
}