Remove no-op codepath

This commit is contained in:
Chad Horohoe 2012-01-09 13:04:05 +00:00
parent cdcf02f1d7
commit 6cc1277748
2 changed files with 0 additions and 7 deletions

View file

@ -801,10 +801,6 @@ class NewParserTest extends MediaWikiTestCase {
}
}
public function showRunFile( $file ) {
/* NOP */
}
//Test options parser functions
protected function parseOptions( $instring ) {

View file

@ -12,8 +12,6 @@ class TestFileIterator implements Iterator {
private $eof;
function __construct( $file, $parserTest ) {
global $IP;
$this->file = $file;
$this->fh = fopen( $this->file, "rt" );
@ -22,7 +20,6 @@ class TestFileIterator implements Iterator {
}
$this->parserTest = $parserTest;
$this->parserTest->showRunFile( wfRelativePath( $this->file, $IP ) );
$this->lineNum = $this->index = 0;
}