/**
  * action update
  *
  * @param \TYPO3\EasyGooglemap\Domain\Model\Location $location
  * @return void
  */
 public function updateAction(\TYPO3\EasyGooglemap\Domain\Model\Location $location)
 {
     $this->locationRepository->update($location);
     $this->flashMessageContainer->add('Your Location was updated.');
     $this->redirect('list');
 }