From e0fa644b082e2bc8627baafab365a26b2f049b94 Mon Sep 17 00:00:00 2001 From: shirohoo Date: Sun, 5 Jun 2022 10:25:52 +0900 Subject: [PATCH] Fix typo in BasicLookupStrategy Javadoc Closes gh-11336 --- .../security/acls/jdbc/BasicLookupStrategy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acl/src/main/java/org/springframework/security/acls/jdbc/BasicLookupStrategy.java b/acl/src/main/java/org/springframework/security/acls/jdbc/BasicLookupStrategy.java index 9d4d099b25..2b927a1260 100644 --- a/acl/src/main/java/org/springframework/security/acls/jdbc/BasicLookupStrategy.java +++ b/acl/src/main/java/org/springframework/security/acls/jdbc/BasicLookupStrategy.java @@ -73,8 +73,8 @@ import org.springframework.util.Assert; * one in lookupObjectIdentities. These are built from the same select and "order * by" clause, using a different where clause in each case. In order to use custom schema * or column names, each of these SQL clauses can be customized, but they must be - * consistent with each other and with the expected result set generated by the the - * default values. + * consistent with each other and with the expected result set generated by the default + * values. * * @author Ben Alex */