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 167b0e444f69077ef17efe66581bf70133729b1e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jul 9 10:21:59 2024 -0400 Use final and remove redundant keywords --- src/test/java/org/apache/commons/dbutils/BaseTestCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/org/apache/commons/dbutils/BaseTestCase.java b/src/test/java/org/apache/commons/dbutils/BaseTestCase.java index 8de88bc..dbb3682 100644 --- a/src/test/java/org/apache/commons/dbutils/BaseTestCase.java +++ b/src/test/java/org/apache/commons/dbutils/BaseTestCase.java @@ -87,7 +87,7 @@ public class BaseTestCase extends TestCase { return this.rs; } - public void setResultSet(ResultSet resultSet) { + public void setResultSet(final ResultSet resultSet) { this.rs = resultSet; } @@ -100,7 +100,7 @@ public class BaseTestCase extends TestCase { protected void setUp() throws Exception { super.setUp(); - rs = this.createMockResultSet(); + rs = createMockResultSet(); emptyResultSet = MockResultSet.create(metaData, null); }