From fdbfed3cad406f5b8d6e8043d5cc9a21e43f0d33 Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 18 Feb 2015 09:22:04 -0800 Subject: [PATCH] Issue #2421713 by JeroenT: Remove deprecated functions in WebTestBase.php --- core/modules/simpletest/src/WebTestBase.php | 40 --------------------- 1 file changed, 40 deletions(-) diff --git a/core/modules/simpletest/src/WebTestBase.php b/core/modules/simpletest/src/WebTestBase.php index c9a4b0d4b78..926738f3821 100644 --- a/core/modules/simpletest/src/WebTestBase.php +++ b/core/modules/simpletest/src/WebTestBase.php @@ -2420,26 +2420,6 @@ abstract class WebTestBase extends TestBase { return $header; } - /** - * Gets the current raw HTML of requested page. - * - * @deprecated 8.x - * Use getRawContent(). - */ - protected function drupalGetContent() { - return $this->getRawContent(); - } - - /** - * Gets the value of drupalSettings for the currently-loaded page. - * - * @deprecated 8.x - * Use getDrupalSettings(). - */ - protected function drupalGetSettings() { - return $this->getDrupalSettings(); - } - /** * Gets an array containing all emails sent during this test case. * @@ -2466,26 +2446,6 @@ abstract class WebTestBase extends TestBase { return $filtered_emails; } - /** - * Sets the raw HTML content. - * - * @deprecated 8.x - * Use setRawContent(). - */ - protected function drupalSetContent($content) { - $this->setRawContent($content); - } - - /** - * Sets the value of drupalSettings for the currently-loaded page. - * - * @deprecated 8.x - * Use setDrupalSettings(). - */ - protected function drupalSetSettings($settings) { - $this->setDrupalSettings($settings); - } - /** * Passes if the internal browser's URL matches the given path. *