Merge "Fix unused vars/pointless assignments"
[lhc/web/wiklou.git] / includes / tidy / TidyDriverBase.php
index 96ee8c3..a53360c 100644 (file)
@@ -14,22 +14,12 @@ abstract class TidyDriverBase {
 
        /**
         * Return true if validate() can be used
+        * @return bool
         */
        public function supportsValidate() {
                return false;
        }
 
-       /**
-        * Check HTML for errors, used if $wgValidateAllHtml = true.
-        *
-        * @param string $text
-        * @param string &$errorStr Return the error string
-        * @return bool Whether the HTML is valid
-        */
-       public function validate( $text, &$errorStr ) {
-               throw new \MWException( get_class( $this ) . " does not support validate()" );
-       }
-
        /**
         * Clean up HTML
         *