Skip to content

Commit b0b5fa1

Browse files
committed
Javadoc
1 parent f133d20 commit b0b5fa1

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/org/apache/commons/dbutils/AsyncQueryRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public BatchCallableStatement(final String sql, final Object[][] params, final C
6868
/**
6969
* The actual call to executeBatch.
7070
*
71-
* @return an array of update counts containing one element for each command in the batch.
71+
* @return An array of update counts containing one element for each command in the batch.
7272
* @throws SQLException if a database access error occurs or one of the commands sent to the database fails.
7373
* @see PreparedStatement#executeBatch()
7474
*/
@@ -128,7 +128,7 @@ public QueryCallableStatement(final Connection conn, final boolean closeConn, fi
128128
/**
129129
* The actual call to {@code handle()} method.
130130
*
131-
* @return an array of update counts containing one element for each command in the batch.
131+
* @return An array of update counts containing one element for each command in the batch.
132132
* @throws SQLException if a database access error occurs.
133133
* @see ResultSetHandler#handle(ResultSet)
134134
*/

src/main/java/org/apache/commons/dbutils/ResultSetIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class ResultSetIterator implements Iterator<Object[]> {
3939
* Generates an {@code Iterable}, suitable for use in for-each loops.
4040
*
4141
* @param resultSet Wrap this {@code ResultSet} in an {@code Iterator}.
42-
* @return an {@code Iterable}, suitable for use in for-each loops.
42+
* @return An {@code Iterable}, suitable for use in for-each loops.
4343
*/
4444
public static Iterable<Object[]> iterable(final ResultSet resultSet) {
4545
return () -> new ResultSetIterator(resultSet);

src/main/java/org/apache/commons/dbutils/handlers/AbstractListHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public AbstractListHandler() {
4646
*
4747
* @see #handleRow(ResultSet)
4848
* @param resultSet {@code ResultSet} to process.
49-
* @return a list of all rows in the result set
49+
* @return A list of all rows in the result set
5050
* @throws SQLException error occurs
5151
*/
5252
@Override

src/test/java/org/apache/commons/dbutils/BaseResultSetHandlerDelegationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected ResultSet createEmptyMockResultSet() {
9797
/**
9898
* Creates a freshly initialized ResultSet.
9999
*
100-
* @return a freshly initialized ResultSet.
100+
* @return A freshly initialized ResultSet.
101101
*/
102102
@Override
103103
protected ResultSet createMockResultSet() {

src/test/java/org/apache/commons/dbutils/BaseTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected ResultSet createEmptyMockResultSet() {
8383
/**
8484
* Creates a freshly initialized ResultSet.
8585
*
86-
* @return a freshly initialized ResultSet.
86+
* @return A freshly initialized ResultSet.
8787
*/
8888
protected ResultSet createMockResultSet() {
8989
return MockResultSet.create(META_DATA, ROW_ARRAY, false);

0 commit comments

Comments
 (0)