Skip to content

Commit e3ffcc5

Browse files
committed
Add accessor for out ivar.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1560384 13f79535-47bb-0310-9956-ffa450edef68
1 parent 5823366 commit e3ffcc5

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/main/java/org/apache/commons/csv/CSVPrinter.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,4 +415,13 @@ public void printRecords(final ResultSet resultSet) throws SQLException, IOExcep
415415
println();
416416
}
417417
}
418+
419+
/**
420+
* Gets the target Appendable.
421+
*
422+
* @return the target Appendable.
423+
*/
424+
public Appendable getOut() {
425+
return this.out;
426+
}
418427
}

0 commit comments

Comments
 (0)