/**
  * This method is used to save any additional input into the current task object
  * if the task class matches
  *
  * @param array $submittedData : array containing the data submitted by the user
  * @param tx_caretaker_TestrunnerTask|\TYPO3\CMS\Scheduler\Task\AbstractTask $task : reference to the current task object
  */
 public function saveAdditionalFields(array $submittedData, \TYPO3\CMS\Scheduler\Task\AbstractTask $task)
 {
     $task->setNodeId($submittedData['update_node_id']);
 }