Removed unnecessary toString()

This commit is contained in:
Luke Taylor 2009-04-27 10:41:16 +00:00
parent da823b2396
commit c96da98e14
1 changed files with 1 additions and 1 deletions

View File

@ -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) + "'");
}
}