Example #1
0
 private void logPosition(Santa santa) {
   for (House house : houses) {
     if (santa.getPos().equals(house.getPos())) {
       house.visit();
       return;
     }
   }
   houses.add(new House(new Position(santa.getPos().getX(), santa.getPos().getY())));
 }