From 479b0da50aa5bc29d6960b2dd3c64dc5ee091a7e Mon Sep 17 00:00:00 2001 From: Thijs Kinkhorst <thijs@kinkhorst.com> Date: Wed, 27 May 2015 09:05:35 +0000 Subject: [PATCH] drop SimpleSAML_Utilities::disableXMLEntityLoader() No need to keep it around as deprecated, since it has only been in master, never in a released version, and has been added just a few months ago. --- lib/SimpleSAML/Utilities.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/SimpleSAML/Utilities.php b/lib/SimpleSAML/Utilities.php index 5f0e7cfd5..8cf4d9318 100644 --- a/lib/SimpleSAML/Utilities.php +++ b/lib/SimpleSAML/Utilities.php @@ -538,16 +538,6 @@ class SimpleSAML_Utilities { \SimpleSAML\Utils\Time::initTimezone(); } - /** - * @deprecated This method will be removed in SSP 2.0. Please use libxml_disable_entity_loader() instead. - */ - public static function disableXMLEntityLoader() { - /* Function only present in PHP >= 5.2.11 while we support 5.2+ */ - if ( function_exists('libxml_disable_entity_loader') ) { - libxml_disable_entity_loader(); - } - } - /** * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML\Utils\System::writeFile() instead. */ -- GitLab