Skip to content

Commit

Permalink
Remove extra blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Nov 26, 2023
1 parent dcb2a2d commit a002d09
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ public <T> List<T> toBeanList(final ResultSet resultSet, final Class<? extends T
return this.convert.toBeanList(resultSet, type);
}


/**
* Convert a {@code ResultSet} row into a {@code Map}.
*
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/apache/commons/dbutils/DbUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,6 @@ public static void rollback(final Connection conn) throws SQLException {
}
}


/**
* Performs a rollback on the {@code Connection} then closes it,
* avoid closing if null.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,11 @@
*/
package org.apache.commons.dbutils;


import java.beans.PropertyDescriptor;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.Arrays;


/**
* Provides generous name matching (e.g. underscore-aware) from DB
* columns to Java Bean properties.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public ArrayListHandler(final RowProcessor convert) {
this.convert = convert;
}


/**
* Convert row's columns into an {@code Object[]}.
* @param resultSet {@code ResultSet} to process.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
*/
public class ColumnListHandlerTest extends BaseTestCase {


public void testColumnIndexHandle() throws SQLException {
final ResultSetHandler<List<String>> h = new ColumnListHandler<>(2);
final List<String> results = h.handle(this.getResultSet());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@

public class KeyedHandlerTest extends BaseTestCase {


public void testColumnIndexHandle() throws SQLException {
final ResultSetHandler<Map<String, Map<String, Object>>> h = new KeyedHandler<>(2);
final Map<String, Map<String, Object>> results = h.handle(this.getResultSet());
Expand Down

0 comments on commit a002d09

Please sign in to comment.