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

@@ -27,7 +27,7 @@ public class BankDaoStub implements BankDao {
id++;
account.setId(id);
}
accounts.put(new Long(account.getId()), account);
accounts.put(account.getId(), account);
System.out.println("SAVE: " + account);
}