Remove public modifier from constructor

This commit is contained in:
Steve Riesenberg
2021-06-29 16:41:16 -05:00
parent 623736d640
commit 5f994a83d8

View File

@@ -351,7 +351,7 @@ public class JdbcRegisteredClientRepositoryTests {
private static final String INSERT_REGISTERED_CLIENT_SQL = "INSERT INTO " + TABLE_NAME
+ " (" + COLUMN_NAMES + ") values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
public CustomJdbcRegisteredClientRepository(JdbcOperations jdbcOperations) {
CustomJdbcRegisteredClientRepository(JdbcOperations jdbcOperations) {
super(jdbcOperations);
setRegisteredClientRowMapper(new CustomRegisteredClientRowMapper());
}