Fix Sonar Issues

Fixes gh-4300
This commit is contained in:
Rob Winch
2017-04-18 21:07:00 -05:00
parent 9d9aadb80f
commit 59a0ba285f
7 changed files with 13 additions and 12 deletions

View File

@@ -84,7 +84,7 @@ public class ContactManagerBackend extends ApplicationObjectSupport implements
public void create(Contact contact) {
// Create the Contact itself
contact.setId(new Long(counter++));
contact.setId(Long.valueOf(counter++));
contactDao.create(contact);
// Grant the current principal administrative permission to the contact