Renamed method to get

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
Jim Martens 2017-04-14 16:46:10 +02:00
parent 00fd20c980
commit 2da9b91fce
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class ORM {
* @param ID the ID of the agent to load
* @return returns the EstateAgent or null if there is no such agent
*/
public EstateAgent getEstateAgent(int ID) {
public EstateAgent get(int ID) {
if (_agents.containsKey(ID)) {
return _agents.get(ID);
}