Skip to content

Commit f155ae0

Browse files
authored
fix Code Quality Issue
1 parent debd575 commit f155ae0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/examples/springbatch/mapper/PersonDynamicSqlSupport.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ public class PersonDynamicSqlSupport {
2525
public static Person person = new Person();
2626
public static SqlColumn<Integer> id = person.id;
2727
public static SqlColumn<String> firstName = person.firstName;
28-
public static SqlColumn<String> lastName = person.lastName;;
29-
public static SqlColumn<Boolean> forPagingTest = person.forPagingTest;;
28+
public static SqlColumn<String> lastName = person.lastName;
29+
public static SqlColumn<Boolean> forPagingTest = person.forPagingTest;
3030

3131
public static class Person extends SqlTable {
3232
public SqlColumn<Integer> id = column("id", JDBCType.INTEGER);

0 commit comments

Comments
 (0)