Ver código fonte

Removed unnecessary toString()

Luke Taylor 16 anos atrás
pai
commit
c96da98e14

+ 1 - 1
acl/src/main/java/org/springframework/security/acls/jdbc/JdbcAclService.java

@@ -112,7 +112,7 @@ public class JdbcAclService implements AclService {
         for (int i = 0; i < objects.size(); i++) {
             if (!result.containsKey(objects.get(i))) {
                 throw new NotFoundException("Unable to find ACL information for object identity '"
-                    + objects.get(i).toString() + "'");
+                    + objects.get(i) + "'");
             }
         }