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 9e4f867d5543e0d2c69c55365228b557e8fac3c8
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Jul 9 10:25:35 2024 -0400

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

diff --git 
a/src/test/java/org/apache/commons/dbutils/handlers/ScalarHandlerTest.java 
b/src/test/java/org/apache/commons/dbutils/handlers/ScalarHandlerTest.java
index aac5a92..5ecbd44 100644
--- a/src/test/java/org/apache/commons/dbutils/handlers/ScalarHandlerTest.java
+++ b/src/test/java/org/apache/commons/dbutils/handlers/ScalarHandlerTest.java
@@ -25,27 +25,27 @@ public class ScalarHandlerTest extends BaseTestCase {
 
     public void testColumnIndexHandle() throws SQLException {
         final ResultSetHandler<String> h = new ScalarHandler<>(2);
-        final Object results = h.handle(this.getResultSet());
+        final Object results = h.handle(getResultSet());
         assertNotNull(results);
         assertEquals("2", results);
     }
 
     public void testColumnNameHandle() throws SQLException {
         final ResultSetHandler<Integer> h = new ScalarHandler<>("intTest");
-        final Object results = h.handle(this.getResultSet());
+        final Object results = h.handle(getResultSet());
         assertNotNull(results);
         assertEquals(Integer.valueOf(1), results);
     }
 
     public void testEmptyResultSetHandle() throws SQLException {
         final ResultSetHandler<String> h = new ScalarHandler<>();
-        final Object results = h.handle(this.getEmptyResultSet());
+        final Object results = h.handle(getEmptyResultSet());
         assertNull(results);
     }
 
     public void testHandle() throws SQLException {
         final ResultSetHandler<String> h = new ScalarHandler<>();
-        final Object results = h.handle(this.getResultSet());
+        final Object results = h.handle(getResultSet());
         assertNotNull(results);
         assertEquals("1", results);
     }

Reply via email to