From 086485100129797af5cd0bcd9d32ff132bb46a1b Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Mon, 14 Mar 2016 10:10:29 +0100
Subject: [PATCH] Replace unneded OC::needUpgrade with OCP method

---
 lib/base.php                 | 10 ----------
 lib/public/backgroundjob.php |  2 +-
 2 files changed, 1 insertion(+), 11 deletions(-)

diff --git a/lib/base.php b/lib/base.php
index 7db4ec4a8fa..7659148c140 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -338,16 +338,6 @@ class OC {
 		die();
 	}
 
-	/**
-	 * 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
diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php
index 69397bb3e45..f532a97c747 100644
--- a/lib/public/backgroundjob.php
+++ b/lib/public/backgroundjob.php
@@ -99,7 +99,7 @@ class BackgroundJob {
 	 * @since 4.5.0
 	 */
 	public static function addRegularTask($klass, $method) {
-		if (!\OC::needUpgrade()) {
+		if (!\OCP\Util::needUpgrade()) {
 			self::registerJob('OC\BackgroundJob\Legacy\RegularJob', array($klass, $method));
 			return true;
 		}
-- 
GitLab