Final cleanup of comments

This commit is contained in:
U-BASIS\dsmyda 2018-08-06 13:43:12 -04:00
parent d516660aa3
commit 11a2bc3685

View File

@ -227,8 +227,7 @@ public class SQLiteReader implements AutoCloseable {
}
/**
* Converts a ResultSet (row results from a table read) and converts
* them into a collection view.
* Converts a ResultSet (row results from a table read) into a list.
*
* @param resultSet row results from a table read
* @return List of rows, where each row is
@ -261,6 +260,11 @@ public class SQLiteReader implements AutoCloseable {
return rowMap;
}
/**
* Closes underlying JDBC connection.
*
* @throws SQLException
*/
@Override
public void close() throws SQLException {
connection.close();