We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 03e7539 + f155ae0 commit fe452d0Copy full SHA for fe452d0
src/test/java/examples/springbatch/mapper/PersonDynamicSqlSupport.java
@@ -25,8 +25,8 @@ public class PersonDynamicSqlSupport {
25
public static Person person = new Person();
26
public static SqlColumn<Integer> id = person.id;
27
public static SqlColumn<String> firstName = person.firstName;
28
- public static SqlColumn<String> lastName = person.lastName;;
29
- public static SqlColumn<Boolean> forPagingTest = person.forPagingTest;;
+ public static SqlColumn<String> lastName = person.lastName;
+ public static SqlColumn<Boolean> forPagingTest = person.forPagingTest;
30
31
public static class Person extends SqlTable {
32
public SqlColumn<Integer> id = column("id", JDBCType.INTEGER);
0 commit comments