From 5ff5bcfde781ae47289906430bafed2afa06fa33 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Wed, 6 Nov 2013 16:19:38 -0800 Subject: [PATCH] Remove unused function Change-Id: I68ad2093c08adba2a92344c7db0737c10db9d150 --- includes/GlobalFunctions.php | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 23a025f987..93a2b029f0 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -3430,19 +3430,6 @@ function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1, return str_pad( $result, $pad, '0', STR_PAD_LEFT ); } -/** - * Create an object with a given name and an array of construct parameters - * - * @param $name String - * @param array $p parameters - * @return object - * @deprecated since 1.18, warnings in 1.18, removal in 1.20 - */ -function wfCreateObject( $name, $p ) { - wfDeprecated( __FUNCTION__, '1.18' ); - return MWFunction::newObj( $name, $p ); -} - /** * @return bool */ -- 2.20.1