diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-03-14 10:10:29 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-03-14 10:10:29 +0100 |
commit | 086485100129797af5cd0bcd9d32ff132bb46a1b (patch) | |
tree | 10dbd47056dd74f95f9160bfc88577b83464c71c /lib/base.php | |
parent | e0998c27ff205566db7799dce177192d2b776bc1 (diff) | |
download | nextcloud-server-086485100129797af5cd0bcd9d32ff132bb46a1b.tar.gz nextcloud-server-086485100129797af5cd0bcd9d32ff132bb46a1b.zip |
Replace unneded OC::needUpgrade with OCP method
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/base.php b/lib/base.php index 7db4ec4a8fa..7659148c140 100644 --- a/lib/base.php +++ b/lib/base.php @@ -339,16 +339,6 @@ class OC { } /** - * check if the instance needs to perform an upgrade - * - * @return bool - * @deprecated use \OCP\Util::needUpgrade() instead - */ - public static function needUpgrade() { - return \OCP\Util::needUpgrade(); - } - - /** * Checks if the version requires an update and shows * @param bool $showTemplate Whether an update screen should get shown * @return bool|void |