Removing unused method Status::getXML.
authorTyler Anthony Romeo <tylerromeo@gmail.com>
Wed, 15 Aug 2012 20:54:01 +0000 (16:54 -0400)
committerAlexandre Emsenhuber <ialex.wiki@gmail.com>
Sun, 19 Aug 2012 09:17:57 +0000 (11:17 +0200)
Removed Status::getXML and its single usage in one of the
phpunit maintenance scripts. It is not used anywhere
in any known extension.

Change-Id: I676446647681059449c46c2ff109570a060e0e20
Signed-off-by: Tyler Anthony Romeo <tylerromeo@gmail.com>
includes/Status.php
tests/phpunit/maintenance/DumpTestCase.php

index 29dc2f4..10dfb51 100644 (file)
@@ -164,35 +164,6 @@ class Status {
                return $cleanParams;
        }
 
-       /**
-        * @param $item
-        * @return string
-        */
-       protected function getItemXML( $item ) {
-               $params = $this->cleanParams( $item['params'] );
-               $xml = "<{$item['type']}>\n" .
-                       Xml::element( 'message', null, $item['message'] ) . "\n" .
-                       Xml::element( 'text', null, wfMessage( $item['message'], $params )->text() ) ."\n";
-               foreach ( $params as $param ) {
-                       $xml .= Xml::element( 'param', null, $param );
-               }
-               $xml .= "</{$item['type']}>\n";
-               return $xml;
-       }
-
-       /**
-        * Get the error list as XML
-        * @return string
-        */
-       function getXML() {
-               $xml = "<errors>\n";
-               foreach ( $this->errors as $error ) {
-                       $xml .= $this->getItemXML( $error );
-               }
-               $xml .= "</errors>\n";
-               return $xml;
-       }
-
        /**
         * Get the error list as a wikitext formatted list
         *
index b5eb573..d134438 100644 (file)
@@ -45,7 +45,7 @@ abstract class DumpTestCase extends MediaWikiLangTestCase {
                                return array( $revision_id, $text_id );
                        }
                }
-               throw new MWException( "Could not determine revision id (" . $status->getXML() . ")" );
+               throw new MWException( "Could not determine revision id (" . $status->getWikiText() . ")" );
        }