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