mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-01 09:42:13 +00:00
Removed unnecessary toString()
This commit is contained in:
parent
da823b2396
commit
c96da98e14
@ -112,7 +112,7 @@ public class JdbcAclService implements AclService {
|
|||||||
for (int i = 0; i < objects.size(); i++) {
|
for (int i = 0; i < objects.size(); i++) {
|
||||||
if (!result.containsKey(objects.get(i))) {
|
if (!result.containsKey(objects.get(i))) {
|
||||||
throw new NotFoundException("Unable to find ACL information for object identity '"
|
throw new NotFoundException("Unable to find ACL information for object identity '"
|
||||||
+ objects.get(i).toString() + "'");
|
+ objects.get(i) + "'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user