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


The following commit(s) were added to refs/heads/master by this push:
     new ad3af7d  Make private static classes final
ad3af7d is described below

commit ad3af7d2f2c186b15ca50db42bca87a539acbe8f
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 10 16:35:28 2023 -0400

    Make private static classes final
---
 src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java 
b/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java
index 14a4cfb..865e111 100644
--- a/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java
+++ b/src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java
@@ -30,7 +30,7 @@ import java.util.Map;
 
 public class BeanProcessorTest extends BaseTestCase {
 
-    private static class IndexedPropertyTestClass {
+    private static final class IndexedPropertyTestClass {
         private String name;
         // Indexed variable with indexed getter and setter
         private List<String> things;

Reply via email to