diff --git a/apps/files_external/lib/Lib/FrontendDefinitionTrait.php b/apps/files_external/lib/Lib/FrontendDefinitionTrait.php index 30e0f59362..300abd15db 100644 --- a/apps/files_external/lib/Lib/FrontendDefinitionTrait.php +++ b/apps/files_external/lib/Lib/FrontendDefinitionTrait.php @@ -106,16 +106,6 @@ trait FrontendDefinitionTrait { return $this; } - /** - * @param string $custom - * @return self - * @deprecated 9.1.0, use addCustomJs() instead - */ - public function setCustomJs($custom) { - $this->customJs = [$custom]; - return $this; - } - /** * Serialize into JSON for client-side JS * diff --git a/lib/private/BackgroundJob/JobList.php b/lib/private/BackgroundJob/JobList.php index 1adecb5b32..d9d80374cf 100644 --- a/lib/private/BackgroundJob/JobList.php +++ b/lib/private/BackgroundJob/JobList.php @@ -310,18 +310,6 @@ class JobList implements IJobList { $query->execute(); } - /** - * get the id of the last ran job - * - * @return int - * @deprecated 9.1.0 - The functionality behind the value is deprecated, it - * only tells you which job finished last, but since we now allow multiple - * executors to run in parallel, it's not used to calculate the next job. - */ - public function getLastJob() { - return (int) $this->config->getAppValue('backgroundjob', 'lastjob', 0); - } - /** * set the lastRun of $job to now * diff --git a/lib/public/BackgroundJob/IJobList.php b/lib/public/BackgroundJob/IJobList.php index cf04cb21f4..eb8a2c5e3d 100644 --- a/lib/public/BackgroundJob/IJobList.php +++ b/lib/public/BackgroundJob/IJobList.php @@ -115,17 +115,6 @@ interface IJobList { */ public function unlockJob(IJob $job); - /** - * get the id of the last ran job - * - * @return int - * @since 7.0.0 - * @deprecated 9.1.0 - The functionality behind the value is deprecated, it - * only tells you which job finished last, but since we now allow multiple - * executors to run in parallel, it's not used to calculate the next job. - */ - public function getLastJob(); - /** * set the lastRun of $job to now * diff --git a/tests/lib/BackgroundJob/DummyJobList.php b/tests/lib/BackgroundJob/DummyJobList.php index 529e93e960..452b9bb98e 100644 --- a/tests/lib/BackgroundJob/DummyJobList.php +++ b/tests/lib/BackgroundJob/DummyJobList.php @@ -117,15 +117,6 @@ class DummyJobList extends \OC\BackgroundJob\JobList { return null; } - /** - * get the id of the last ran job - * - * @return int - */ - public function getLastJob() { - return $this->last; - } - /** * set the lastRun of $job to now * diff --git a/tests/lib/BackgroundJob/JobListTest.php b/tests/lib/BackgroundJob/JobListTest.php index 20ba1e5001..736d670ed2 100644 --- a/tests/lib/BackgroundJob/JobListTest.php +++ b/tests/lib/BackgroundJob/JobListTest.php @@ -146,15 +146,6 @@ class JobListTest extends TestCase { $this->assertFalse($this->instance->has($job, 10)); } - public function testGetLastJob() { - $this->config->expects($this->once()) - ->method('getAppValue') - ->with('backgroundjob', 'lastjob', 0) - ->willReturn(15); - - $this->assertEquals(15, $this->instance->getLastJob()); - } - protected function createTempJob($class, $argument, $reservedTime = 0, $lastChecked = 0) { if ($lastChecked === 0) { $lastChecked = time();