Skip to content

Commit 78af6dc

Browse files
committed
Refactor mapToUser method visibility to private
1 parent 2a082de commit 78af6dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/org/springframework/security/provisioning/JdbcUserDetailsManager.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ protected List<UserDetails> loadUsersByUsername(String username) {
189189
return getJdbcTemplate().query(getUsersByUsernameQuery(), userDetailsMapper, username);
190190
}
191191

192-
protected UserDetails mapToUser(ResultSet rs, int rowNum) throws SQLException {
192+
private UserDetails mapToUser(ResultSet rs, int rowNum) throws SQLException {
193193
String userName = rs.getString(1);
194194
String password = rs.getString(2);
195195
boolean enabled = rs.getBoolean(3);

0 commit comments

Comments
 (0)