diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-24 11:47:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 11:47:37 +0200 |
commit | 3d671cc536b1b472c746fd4ea8f60135f4935a44 (patch) | |
tree | 928a0fd4c13d609f5cadf32fd3271c465830a05a /apps/files | |
parent | 8a1d3c7e877f143d211af259d08737c0d9aa8cfe (diff) | |
parent | c54a59d51eb924e77df6f6d2bb79ea466d169221 (diff) | |
download | nextcloud-server-3d671cc536b1b472c746fd4ea8f60135f4935a44.tar.gz nextcloud-server-3d671cc536b1b472c746fd4ea8f60135f4935a44.zip |
Merge pull request #4443 from nextcloud/cleanup-unused-imports
Remove unused use statements
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/lib/Command/DeleteOrphanedFiles.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Command/ScanAppData.php | 2 | ||||
-rw-r--r-- | apps/files/lib/Controller/ViewController.php | 1 | ||||
-rw-r--r-- | apps/files/tests/Controller/ApiControllerTest.php | 2 |
4 files changed, 0 insertions, 7 deletions
diff --git a/apps/files/lib/Command/DeleteOrphanedFiles.php b/apps/files/lib/Command/DeleteOrphanedFiles.php index 77a22945a9a..2e5893cfd1f 100644 --- a/apps/files/lib/Command/DeleteOrphanedFiles.php +++ b/apps/files/lib/Command/DeleteOrphanedFiles.php @@ -23,8 +23,6 @@ namespace OCA\Files\Command; -use Doctrine\DBAL\Platforms\PostgreSqlPlatform; -use Doctrine\DBAL\Platforms\SqlitePlatform; use OCP\IDBConnection; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; diff --git a/apps/files/lib/Command/ScanAppData.php b/apps/files/lib/Command/ScanAppData.php index 6ad83d9a182..7212717ee40 100644 --- a/apps/files/lib/Command/ScanAppData.php +++ b/apps/files/lib/Command/ScanAppData.php @@ -12,8 +12,6 @@ use OCP\Files\NotFoundException; use OCP\Files\StorageNotAvailableException; use OCP\IConfig; use OCP\IDBConnection; -use OCP\IUserManager; -use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; diff --git a/apps/files/lib/Controller/ViewController.php b/apps/files/lib/Controller/ViewController.php index 499961ca2dc..f7a4318e595 100644 --- a/apps/files/lib/Controller/ViewController.php +++ b/apps/files/lib/Controller/ViewController.php @@ -35,7 +35,6 @@ use OCP\Files\IRootFolder; use OCP\Files\NotFoundException; use OCP\IConfig; use OCP\IL10N; -use OCP\INavigationManager; use OCP\IRequest; use OCP\IURLGenerator; use OCP\IUserSession; diff --git a/apps/files/tests/Controller/ApiControllerTest.php b/apps/files/tests/Controller/ApiControllerTest.php index 56d0f6c8dee..eba87289300 100644 --- a/apps/files/tests/Controller/ApiControllerTest.php +++ b/apps/files/tests/Controller/ApiControllerTest.php @@ -26,7 +26,6 @@ namespace OCA\Files\Controller; -use OC\Files\FileInfo; use OCP\AppFramework\Http; use OCP\Files\File; use OCP\Files\Folder; @@ -42,7 +41,6 @@ use OCP\IRequest; use OCA\Files\Service\TagService; use OCP\AppFramework\Http\DataResponse; use OCP\IPreview; -use OCP\Image; /** * Class ApiController |