diff --git a/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php b/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php index 6c5197e..2ce05cc 100644 --- a/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php +++ b/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php @@ -53,11 +53,6 @@ public function getFormID() { /** * {@inheritdoc} - * - * @param \Drupal\Core\Entity\EntityInterface $node - * The node of the top-level page in the book. - * - * @ingroup forms */ public function buildForm(array $form, array &$form_state, EntityInterface $node = NULL) { drupal_set_title($node->label()); @@ -73,8 +68,6 @@ public function buildForm(array $form, array &$form_state, EntityInterface $node /** * {@inheritdoc} - * - * Checks that the book has not been changed while using the form. */ public function validateForm(array &$form, array &$form_state) { if ($form_state['values']['tree_hash'] != $form_state['values']['tree_current_hash']) { @@ -84,11 +77,6 @@ public function validateForm(array &$form, array &$form_state) { /** * {@inheritdoc} - * - * This function takes care to save parent menu items before their children. - * Saving menu items in the incorrect order can break the menu tree. - * - * @see menu_overview_form_submit() */ public function submitForm(array &$form, array &$form_state) { // Save elements in the same order as defined in post rather than the form.