sanjanarampurkottur01 commented on code in PR #218:
URL: https://github.com/apache/commons-dbutils/pull/218#discussion_r1405217722
##########
src/test/java/org/apache/commons/dbutils/BeanProcessorTest.java:
##########
@@ -186,19 +187,21 @@ public void setTestField(final int idx, final Integer
testField) {
}
}
- private static final BeanProcessor beanProc = new BeanProcessor();
+ private static final BeanProcessor BEAN_PROCESSOR = new BeanProcessor();
public void testCheckAnnotationOnMissingReadMethod() throws Exception {
final String[] colNames = { "testField" };
final ResultSetMetaData metaData =
MockResultSetMetaData.create(colNames);
- final String testField = "first";
- final Object[][] rows = { new Object[] { testField } };
+ final String testFieldRowValues = "first";
+ final Object[][] rows = {
Review Comment:
Sure, Fixed it @garydgregory
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]