Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Fritscher <boris@fritscher.ch>2020-01-08 19:48:49 +0300
committerBoris Fritscher <boris@fritscher.ch>2020-01-08 19:48:49 +0300
commite1d52566bb9cf98570baa32d3bc4bc3776bf85fa (patch)
tree82129849cad3a7a40222c07aaf9f95b502d7eeb5 /lib/AppInfo
parentffe16e631700ebb3ab9ac8bbdbfd7a983ea7192a (diff)
remove unused imports
Signed-off-by: Boris Fritscher <boris@fritscher.ch>
Diffstat (limited to 'lib/AppInfo')
-rw-r--r--lib/AppInfo/Application.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 7968a4de3..baee1c147 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -24,32 +24,7 @@ declare(strict_types=1);
namespace OCA\Mail\AppInfo;
-use OCA\Mail\Contracts\IAttachmentService;
-use OCA\Mail\Contracts\IAvatarService;
-use OCA\Mail\Contracts\IMailManager;
-use OCA\Mail\Contracts\IMailTransmission;
-use OCA\Mail\Contracts\IUserPreferences;
-use OCA\Mail\Events\BeforeMessageDeletedEvent;
-use OCA\Mail\Events\DraftSavedEvent;
-use OCA\Mail\Events\MessageSentEvent;
-use OCA\Mail\Events\SaveDraftEvent;
-use OCA\Mail\Http\Middleware\ErrorMiddleware;
-use OCA\Mail\Listener\AddressCollectionListener;
-use OCA\Mail\Listener\DeleteDraftListener;
-use OCA\Mail\Listener\DraftMailboxCreatorListener;
-use OCA\Mail\Listener\FlagRepliedMessageListener;
-use OCA\Mail\Listener\TrashMailboxCreatorListener;
-use OCA\Mail\Listener\SaveSentMessageListener;
-use OCA\Mail\Service\Attachment\AttachmentService;
-use OCA\Mail\Service\AvatarService;
-use OCA\Mail\Service\Group\IGroupService;
-use OCA\Mail\Service\Group\NextcloudGroupService;
-use OCA\Mail\Service\MailManager;
-use OCA\Mail\Service\MailTransmission;
-use OCA\Mail\Service\UserPreferenceSevice;
use OCP\AppFramework\App;
-use OCP\EventDispatcher\IEventDispatcher;
-use OCP\Util;
class Application extends App {