diff --git a/libraries/src/Form/Field/EditorField.php b/libraries/src/Form/Field/EditorField.php index c0a725c9a76e0..21d64e6a890c7 100644 --- a/libraries/src/Form/Field/EditorField.php +++ b/libraries/src/Form/Field/EditorField.php @@ -320,25 +320,4 @@ protected function getEditor() return $this->editor; } - - /** - * Method to get the JEditor output for an onSave event. - * - * @return string The JEditor object output. - * - * @since 1.6 - * @deprecated 4.0 Will be removed without replacement - * @see Editor::save() - */ - public function save() - { - $editor = $this->getEditor(); - - if (!method_exists($editor, 'save')) - { - return ''; - } - - return $editor->save($this->id); - } }