mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-28 23:02:15 +00:00
Make compile Java 1.4 compatible (no autoboxing).
This commit is contained in:
parent
8f645f97f7
commit
f5a464bc39
@ -81,7 +81,7 @@ public class JdbcAclService implements AclService {
|
|||||||
public Object mapRow(ResultSet rs, int rowNum)
|
public Object mapRow(ResultSet rs, int rowNum)
|
||||||
throws SQLException {
|
throws SQLException {
|
||||||
String javaType = rs.getString("class");
|
String javaType = rs.getString("class");
|
||||||
Long identifier = rs.getLong("obj_id");
|
Long identifier = new Long(rs.getLong("obj_id"));
|
||||||
|
|
||||||
return new ObjectIdentityImpl(javaType, identifier);
|
return new ObjectIdentityImpl(javaType, identifier);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user