瀏覽代碼

Added missing space to SQL query in JdbcMutableAclService.

Luke Taylor 17 年之前
父節點
當前提交
fe6e297358
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/src/main/java/org/springframework/security/acls/jdbc/JdbcMutableAclService.java

+ 1 - 1
core/src/main/java/org/springframework/security/acls/jdbc/JdbcMutableAclService.java

@@ -80,7 +80,7 @@ public class JdbcMutableAclService extends JdbcAclService implements MutableAclS
         + "and acl_object_identity.object_id_identity = ?";
     private String selectSidPrimaryKey = "SELECT id FROM acl_sid WHERE principal=? AND sid=?";
     private String updateObjectIdentity = "UPDATE acl_object_identity SET "
-        + "parent_object = ?, owner_sid = ?, entries_inheriting = ?" + "where id = ?";
+        + "parent_object = ?, owner_sid = ?, entries_inheriting = ?" + " where id = ?";
 
     //~ Constructors ===================================================================================================