diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-04-10 17:57:58 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-06-29 21:15:05 +0200 |
commit | bf30e030488a42763c2c8981c969439bb66df91a (patch) | |
tree | 4d8b44b4be9013170cf9d16a4d3fd198e68062a3 /lib | |
parent | 6831b78597ae38ed03343e274448dfb210af817b (diff) | |
download | nextcloud-server-bf30e030488a42763c2c8981c969439bb66df91a.tar.gz nextcloud-server-bf30e030488a42763c2c8981c969439bb66df91a.zip |
Remove unsued parameter
Diffstat (limited to 'lib')
-rw-r--r-- | lib/setup/abstractdatabase.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup/abstractdatabase.php b/lib/setup/abstractdatabase.php index 07a679f2112..c1b611e6554 100644 --- a/lib/setup/abstractdatabase.php +++ b/lib/setup/abstractdatabase.php @@ -10,7 +10,7 @@ abstract class AbstractDatabase { protected $dbhost; protected $tableprefix; - public function __construct($trans, $config) { + public function __construct($trans) { $this->trans = $trans; } |