Skip to content
Snippets Groups Projects
Commit 479b0da5 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

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.
parent caf89668
No related branches found
No related tags found
No related merge requests found
...@@ -538,16 +538,6 @@ class SimpleSAML_Utilities { ...@@ -538,16 +538,6 @@ class SimpleSAML_Utilities {
\SimpleSAML\Utils\Time::initTimezone(); \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. * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML\Utils\System::writeFile() instead.
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment