Remove unused DatabaseBase::debug() method
authorAaron Schulz <aschulz@wikimedia.org>
Mon, 19 Sep 2016 21:25:35 +0000 (14:25 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Mon, 19 Sep 2016 21:25:35 +0000 (14:25 -0700)
This just trivially wrapped getFlags()/setFlags() anyway

Change-Id: Iab5b508f6746098b66da00c8bf038215cb2359ef

includes/libs/rdbms/database/DatabaseBase.php

index ef72998..e008705 100644 (file)
  * @ingroup Database
  */
 abstract class DatabaseBase extends Database {
-       /**
-        * Boolean, controls output of large amounts of debug information.
-        * @param bool|null $debug
-        *   - true to enable debugging
-        *   - false to disable debugging
-        *   - omitted or null to do nothing
-        *
-        * @return bool Previous value of the flag
-        * @deprecated since 1.28; use setFlag()
-        */
-       public function debug( $debug = null ) {
-               $res = $this->getFlag( DBO_DEBUG );
-               if ( $debug !== null ) {
-                       $debug ? $this->setFlag( DBO_DEBUG ) : $this->clearFlag( DBO_DEBUG );
-               }
-
-               return $res;
-       }
-
        /**
         * Get search engine class. All subclasses of this need to implement this
         * if they wish to use searching.