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 3e58ae8043a2f12f403d6f7a6ba4c6e2ca2a9b96 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Jul 9 10:23:03 2024 -0400 Use final --- .../commons/dbutils/handlers/columns/DoubleColumnHandlerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/dbutils/handlers/columns/DoubleColumnHandlerTest.java b/src/test/java/org/apache/commons/dbutils/handlers/columns/DoubleColumnHandlerTest.java index aa61e93..f3c959f 100644 --- a/src/test/java/org/apache/commons/dbutils/handlers/columns/DoubleColumnHandlerTest.java +++ b/src/test/java/org/apache/commons/dbutils/handlers/columns/DoubleColumnHandlerTest.java @@ -35,7 +35,7 @@ public class DoubleColumnHandlerTest extends AbstractTestColumnHandler<Double> { @Override @Test public void testApplyType() throws Exception { - ResultSet rs = getResultSet(); + final ResultSet rs = getResultSet(); when(rs.getDouble(1)).thenReturn(Double.MIN_VALUE); assertEquals(Double.class, getColumnHandler().apply(rs, 1).getClass()); }