diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-03-27 17:14:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-27 17:14:08 +0100 |
commit | 463b388589134fd816f1ff3ee5ce9dc76c3e4035 (patch) | |
tree | dbd2f8cb51cb74e1fa5a34291b8400926772d633 /apps/theming | |
parent | ad63c1da1b1d4781da76239bc54762aa51481b92 (diff) | |
parent | 74936c49eae91470ce2ec0cf1085d334011a4608 (diff) | |
download | nextcloud-server-463b388589134fd816f1ff3ee5ce9dc76c3e4035.tar.gz nextcloud-server-463b388589134fd816f1ff3ee5ce9dc76c3e4035.zip |
Merge pull request #20170 from nextcloud/techdebt/remove-unused-imports
Remove unused imports
Diffstat (limited to 'apps/theming')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 2 | ||||
-rw-r--r-- | apps/theming/tests/Controller/IconControllerTest.php | 1 | ||||
-rw-r--r-- | apps/theming/tests/Controller/ThemingControllerTest.php | 3 | ||||
-rw-r--r-- | apps/theming/tests/ImageManagerTest.php | 1 | ||||
-rw-r--r-- | apps/theming/tests/ThemingDefaultsTest.php | 1 | ||||
-rw-r--r-- | apps/theming/tests/UtilTest.php | 1 |
6 files changed, 0 insertions, 9 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index d043c64f853..6a17b23722e 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -48,8 +48,6 @@ use OCP\AppFramework\Http\DataDownloadResponse; use OCP\AppFramework\Http\DataResponse; use OCP\AppFramework\Http\FileDisplayResponse; use OCP\AppFramework\Http\NotFoundResponse; -use OCP\AppFramework\Utility\ITimeFactory; -use OCP\Files\File; use OCP\Files\IAppData; use OCP\Files\NotFoundException; use OCP\Files\NotPermittedException; diff --git a/apps/theming/tests/Controller/IconControllerTest.php b/apps/theming/tests/Controller/IconControllerTest.php index 7f41e8cc6d9..c159c7237ea 100644 --- a/apps/theming/tests/Controller/IconControllerTest.php +++ b/apps/theming/tests/Controller/IconControllerTest.php @@ -34,7 +34,6 @@ use OCA\Theming\Controller\IconController; use OCA\Theming\IconBuilder; use OCA\Theming\ImageManager; use OCA\Theming\ThemingDefaults; -use OCA\Theming\Util; use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataDisplayResponse; use OCP\AppFramework\Http\FileDisplayResponse; diff --git a/apps/theming/tests/Controller/ThemingControllerTest.php b/apps/theming/tests/Controller/ThemingControllerTest.php index d6f8ff4c6b0..8d38c139624 100644 --- a/apps/theming/tests/Controller/ThemingControllerTest.php +++ b/apps/theming/tests/Controller/ThemingControllerTest.php @@ -35,7 +35,6 @@ namespace OCA\Theming\Tests\Controller; -use OC\Files\AppData\Factory; use OC\L10N\L10N; use OC\Template\SCSSCacher; use OCA\Theming\Controller\ThemingController; @@ -47,13 +46,11 @@ use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataResponse; use OCP\AppFramework\Utility\ITimeFactory; use OCP\Files\IAppData; -use OCP\Files\IRootFolder; use OCP\Files\NotFoundException; use OCP\Files\SimpleFS\ISimpleFile; use OCP\Files\SimpleFS\ISimpleFolder; use OCP\IConfig; use OCP\IL10N; -use OCP\ILogger; use OCP\IRequest; use OCP\ITempManager; use OCP\IURLGenerator; diff --git a/apps/theming/tests/ImageManagerTest.php b/apps/theming/tests/ImageManagerTest.php index 2360006958e..fbdadf697e1 100644 --- a/apps/theming/tests/ImageManagerTest.php +++ b/apps/theming/tests/ImageManagerTest.php @@ -27,7 +27,6 @@ namespace OCA\Theming\Tests; use OCA\Theming\ImageManager; -use OCA\Theming\ThemingDefaults; use OCP\Files\IAppData; use OCP\Files\NotFoundException; use OCP\Files\SimpleFS\ISimpleFile; diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php index 458b602d62b..a06cdb8f7a8 100644 --- a/apps/theming/tests/ThemingDefaultsTest.php +++ b/apps/theming/tests/ThemingDefaultsTest.php @@ -41,7 +41,6 @@ use OCP\App\IAppManager; use OCP\Files\IAppData; use OCP\Files\NotFoundException; use OCP\Files\SimpleFS\ISimpleFile; -use OCP\Files\SimpleFS\ISimpleFolder; use OCP\ICache; use OCP\ICacheFactory; use OCP\IConfig; diff --git a/apps/theming/tests/UtilTest.php b/apps/theming/tests/UtilTest.php index f0f7089b624..969d35f7d27 100644 --- a/apps/theming/tests/UtilTest.php +++ b/apps/theming/tests/UtilTest.php @@ -30,7 +30,6 @@ namespace OCA\Theming\Tests; use OCA\Theming\Util; use OCP\App\IAppManager; use OCP\Files\IAppData; -use OCP\Files\IRootFolder; use OCP\Files\NotFoundException; use OCP\Files\SimpleFS\ISimpleFile; use OCP\Files\SimpleFS\ISimpleFolder; |