Skip to content

Commit 02a9aaf

Browse files
committed
fix: Remove unused property
Signed-off-by: Julius Knorr <[email protected]>
1 parent 8199afe commit 02a9aaf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lib/DAV/LockBackend.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
use OCP\Files\NotFoundException;
4040
use Sabre\DAV\Locks\Backend\BackendInterface;
4141
use Sabre\DAV\Locks\LockInfo;
42-
use Sabre\DAV\Server;
4342

4443
class LockBackend implements BackendInterface {
4544
/** @var FileService */
@@ -52,9 +51,8 @@ class LockBackend implements BackendInterface {
5251
private $absolute = false;
5352

5453
public function __construct(
55-
Server $server, FileService $fileService, LockService $lockService, bool $absolute
54+
FileService $fileService, LockService $lockService, bool $absolute
5655
) {
57-
$this->server = $server;
5856
$this->fileService = $fileService;
5957
$this->lockService = $lockService;
6058
$this->absolute = $absolute;

0 commit comments

Comments
 (0)