From 75d5e8f5f2732f8dc72ada279105da478c853032 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 21 Apr 2009 03:38:43 +0000 Subject: [PATCH] Spelling correction. --- .../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 57629eeefa..5c41fc11c2 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 @@ -131,7 +131,7 @@ public final class BasicLookupStrategy implements LookupStrategy { final String endSql = ") order by acl_object_identity.object_id_identity" + " asc, acl_entry.ace_order asc"; - StringBuilder sqlStringBldr = + StringBuilder sqlStringBldr = new StringBuilder(startSql.length() + endSql.length() + requiredRepetitions * (repeatingSql.length() + 4)); sqlStringBldr.append(startSql); @@ -507,7 +507,7 @@ public final class BasicLookupStrategy implements LookupStrategy { } // Add an extra ACE to the ACL (ORDER BY maintains the ACE list order) - // It is permissable to have no ACEs in an ACL (which is detected by a null ACE_SID) + // It is permissible to have no ACEs in an ACL (which is detected by a null ACE_SID) if (rs.getString("ace_sid") != null) { Long aceId = new Long(rs.getLong("ace_id")); Sid recipient;