]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib-php/DB.php
remove unused code
[nominatim.git] / lib-php / DB.php
index 0454a0ff6190567f57acd6d19f46817759ebf7b4..c25c5ca921ae22152a28140ec1cb1540ce8d7e79 100644 (file)
@@ -240,16 +240,6 @@ class DB
         return ($this->getOne($sSQL, array(':tablename' => $sTableName)) == 1);
     }
 
-    /**
-    * Returns a list of table names in the database
-    *
-    * @return array[]
-    */
-    public function getListOfTables()
-    {
-        return $this->getCol("SELECT tablename FROM pg_tables WHERE schemaname='public'");
-    }
-
     /**
      * Deletes a table. Returns true if deleted or didn't exist.
      *