diff options
author | Andreas Fischer <bantu@owncloud.com> | 2013-09-10 21:48:56 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2013-09-10 21:48:56 +0200 |
commit | a2ade4294cae84f592ad32a21b1d3beaa696844f (patch) | |
tree | 71be5040452a22893b4e68eeefec22148f65ec3b /lib | |
parent | 72689f643b631061777149d96f6f170f7722e894 (diff) | |
parent | a0b7bf78a6e1c269adc8ee1c84b72a8d205a6f28 (diff) | |
download | nextcloud-server-a2ade4294cae84f592ad32a21b1d3beaa696844f.tar.gz nextcloud-server-a2ade4294cae84f592ad32a21b1d3beaa696844f.zip |
Merge pull request #4472 from owncloud/remove-disconnect
Remove disconnect function from OC_DB
* owncloud/remove-disconnect:
Remove disconnect function from OC_DB
Diffstat (limited to 'lib')
-rw-r--r-- | lib/db.php | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/db.php b/lib/db.php index ebd012c72f8..f090f474243 100644 --- a/lib/db.php +++ b/lib/db.php @@ -330,18 +330,6 @@ class OC_DB { } /** - * @brief Disconnect - * - * This is good bye, good bye, yeah! - */ - public static function disconnect() { - // Cut connection if required - if(self::$connection) { - self::$connection->close(); - } - } - - /** * @brief saves database schema to xml file * @param string $file name of file * @param int $mode |