Remove obvious function-level profiling

Change-Id: I16f2978a6028937e10a8fac66231646cc4078169
This commit is contained in:
Chad Horohoe 2015-02-10 14:15:36 -08:00
parent 183a4f3c7a
commit 7ce6d6c49e

View file

@ -625,8 +625,6 @@ class InputBox {
* @param string $text Tag contents
*/
public function extractOptions( $text ) {
wfProfileIn( __METHOD__ );
// Parse all possible options
$values = array();
foreach ( explode( "\n", $text ) as $line ) {
@ -689,7 +687,6 @@ class InputBox {
if ( !$this->isValidColor( $this->mBGColor ) ) {
$this->mBGColor = 'transparent';
}
wfProfileOut( __METHOD__ );
}
/**