Skip to content

Commit 1a33fd8

Browse files
committed
Add in-line comment.
1 parent 8000d69 commit 1a33fd8

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ public void printRecords(final ResultSet resultSet) throws SQLException, IOExcep
382382
while (resultSet.next()) {
383383
for (int i = 1; i <= columnCount; i++) {
384384
final Object object = resultSet.getObject(i);
385+
// TODO Who manages the Clob? The JDBC driver or must we close it? Is it driver-dependent?
385386
print(object instanceof Clob ? ((Clob) object).getCharacterStream() : object);
386387
}
387388
println();

0 commit comments

Comments
 (0)