Make compile Java 1.4 compatible (no autoboxing).

This commit is contained in:
Ben Alex 2008-04-05 05:17:19 +00:00
parent 8f645f97f7
commit f5a464bc39
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public class JdbcAclService implements AclService {
public Object mapRow(ResultSet rs, int rowNum)
throws SQLException {
String javaType = rs.getString("class");
Long identifier = rs.getLong("obj_id");
Long identifier = new Long(rs.getLong("obj_id"));
return new ObjectIdentityImpl(javaType, identifier);
}