From f4761ab54c9b3c777cea55b53369cd12342d78a3 Mon Sep 17 00:00:00 2001 From: Angel Aguilera Date: Tue, 10 Nov 2020 14:08:42 +0100 Subject: [PATCH 1/2] Fix typo in Javadoc --- .../security/core/userdetails/jdbc/JdbcDaoImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java b/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java index a76d809bf7d..2ac000c30fb 100644 --- a/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java +++ b/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java @@ -38,7 +38,7 @@ import org.springframework.util.Assert; /** - * UserDetailsServiceRetrieves implementation which retrieves the user details + * UserDetailsService implementation which retrieves the user details * (username, password, enabled flag, and authorities) from a database using JDBC queries. * *

Default Schema

A default database schema is assumed, with two tables "users" From d1041fcfaaf6f44cfccda0f7e575e55686314bd8 Mon Sep 17 00:00:00 2001 From: Angel Aguilera Date: Wed, 11 Nov 2020 11:33:08 +0100 Subject: [PATCH 2/2] reformat to fix build errors --- .../security/core/userdetails/jdbc/JdbcDaoImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java b/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java index 2ac000c30fb..347d820a996 100644 --- a/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java +++ b/core/src/main/java/org/springframework/security/core/userdetails/jdbc/JdbcDaoImpl.java @@ -38,8 +38,8 @@ import org.springframework.util.Assert; /** - * UserDetailsService implementation which retrieves the user details - * (username, password, enabled flag, and authorities) from a database using JDBC queries. + * UserDetailsService implementation which retrieves the user details (username, + * password, enabled flag, and authorities) from a database using JDBC queries. * *

Default Schema

A default database schema is assumed, with two tables "users" * and "authorities".