This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-dbutils.git

commit e00369b49a40773f0d63468cdf0554833908cd53
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Jul 9 10:24:21 2024 -0400

    Remove redundant keywords
---
 .../java/org/apache/commons/dbutils/handlers/MapListHandlerTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/dbutils/handlers/MapListHandlerTest.java 
b/src/test/java/org/apache/commons/dbutils/handlers/MapListHandlerTest.java
index 7c0e790..88fd11a 100644
--- a/src/test/java/org/apache/commons/dbutils/handlers/MapListHandlerTest.java
+++ b/src/test/java/org/apache/commons/dbutils/handlers/MapListHandlerTest.java
@@ -31,7 +31,7 @@ public class MapListHandlerTest extends BaseTestCase {
 
     public void testEmptyResultSetHandle() throws SQLException {
         final ResultSetHandler<List<Map<String, Object>>> h = new 
MapListHandler();
-        final List<Map<String, Object>> results = 
h.handle(this.getEmptyResultSet());
+        final List<Map<String, Object>> results = 
h.handle(getEmptyResultSet());
 
         assertNotNull(results);
         assertTrue(results.isEmpty());
@@ -39,7 +39,7 @@ public class MapListHandlerTest extends BaseTestCase {
 
     public void testHandle() throws SQLException {
         final ResultSetHandler<List<Map<String, Object>>> h = new 
MapListHandler();
-        final List<Map<String, Object>> results = 
h.handle(this.getResultSet());
+        final List<Map<String, Object>> results = h.handle(getResultSet());
 
         assertNotNull(results);
         assertEquals(ROWS, results.size());

Reply via email to