diff options
Diffstat (limited to 'core/Command/Info/FileUtils.php')
-rw-r--r-- | core/Command/Info/FileUtils.php | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/core/Command/Info/FileUtils.php b/core/Command/Info/FileUtils.php index 1264dee5de2..000cb0eb3d6 100644 --- a/core/Command/Info/FileUtils.php +++ b/core/Command/Info/FileUtils.php @@ -23,7 +23,6 @@ declare(strict_types=1); namespace OC\Core\Command\Info; -use OC\Files\SetupManager; use OCA\Circles\MountManager\CircleMount; use OCA\Files_External\Config\ExternalMountPoint; use OCA\Files_Sharing\SharedMount; @@ -33,7 +32,6 @@ use OCP\Files\Config\IUserMountCache; use OCP\Files\FileInfo; use OCP\Files\IHomeStorage; use OCP\Files\IRootFolder; -use OCP\Files\Mount\IMountManager; use OCP\Files\Mount\IMountPoint; use OCP\Files\Node; use OCP\Files\NotFoundException; @@ -43,21 +41,10 @@ use Symfony\Component\Console\Output\OutputInterface; use OCP\Files\Folder; class FileUtils { - private IRootFolder $rootFolder; - private IUserMountCache $userMountCache; - private IMountManager $mountManager; - private SetupManager $setupManager; - public function __construct( - IRootFolder $rootFolder, - IUserMountCache $userMountCache, - IMountManager $mountManager, - SetupManager $setupManager + private IRootFolder $rootFolder, + private IUserMountCache $userMountCache, ) { - $this->rootFolder = $rootFolder; - $this->userMountCache = $userMountCache; - $this->mountManager = $mountManager; - $this->setupManager = $setupManager; } /** |