mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-15 14:03:17 +00:00
[DS-707] Use valueOf instead of Number constructor
git-svn-id: http://scm.dspace.org/svn/repo/dspace/trunk@5500 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -522,7 +522,7 @@ public final class BitstreamInfoDAO extends DAOSupport
|
||||
|
||||
while (rs.next())
|
||||
{
|
||||
ids.add(new Integer(rs.getInt(1)));
|
||||
ids.add(Integer.valueOf(rs.getInt(1)));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -565,7 +565,7 @@ public final class BitstreamInfoDAO extends DAOSupport
|
||||
|
||||
while (rs.next())
|
||||
{
|
||||
ids.add(new Integer(rs.getInt(1)));
|
||||
ids.add(Integer.valueOf(rs.getInt(1)));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -608,7 +608,7 @@ public final class BitstreamInfoDAO extends DAOSupport
|
||||
|
||||
while (rs.next())
|
||||
{
|
||||
ids.add(new Integer(rs.getInt(1)));
|
||||
ids.add(Integer.valueOf(rs.getInt(1)));
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user