Ticket #269: retrieveUser() should take int, not Integer.

This commit is contained in:
Michael Jumper
2013-02-27 23:08:35 -08:00
parent 88cae0c8e0
commit 554b30f47b

View File

@@ -160,7 +160,7 @@ public class UserService {
* @param id The ID of the user to retrieve.
* @return The existing MySQLUser object if found, null otherwise.
*/
public MySQLUser retrieveUser(Integer id) {
public MySQLUser retrieveUser(int id) {
// Query user by ID
UserWithBLOBs user = userDAO.selectByPrimaryKey(id);