diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-14 22:23:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 22:23:07 +0100 |
commit | 236086c457672742eb3ff57acf66587549b69345 (patch) | |
tree | 3cfb6ba2ff831cf94d37a14c740de6e281795b62 /apps/user_ldap | |
parent | a966d5256c14a9481dcf4d23c2b0b7466183e8e8 (diff) | |
parent | d3d045dd5c5af5f29268727afe63f3c53d22af6c (diff) | |
download | nextcloud-server-236086c457672742eb3ff57acf66587549b69345.tar.gz nextcloud-server-236086c457672742eb3ff57acf66587549b69345.zip |
Merge pull request #8335 from nextcloud/remove-unused-import
Remove unused import statements
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/Controller/RenewPasswordController.php | 1 | ||||
-rw-r--r-- | apps/user_ldap/lib/Jobs/Sync.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/Notification/Notifier.php | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/apps/user_ldap/lib/Controller/RenewPasswordController.php b/apps/user_ldap/lib/Controller/RenewPasswordController.php index 9cdcdddb141..f6b7ae12f0f 100644 --- a/apps/user_ldap/lib/Controller/RenewPasswordController.php +++ b/apps/user_ldap/lib/Controller/RenewPasswordController.php @@ -24,7 +24,6 @@ namespace OCA\User_LDAP\Controller; use OC\HintException; -use OC_Util; use OCP\AppFramework\Controller; use OCP\AppFramework\Http\RedirectResponse; use OCP\AppFramework\Http\TemplateResponse; diff --git a/apps/user_ldap/lib/Jobs/Sync.php b/apps/user_ldap/lib/Jobs/Sync.php index 0cc0be7d3ca..4ef0636a2eb 100644 --- a/apps/user_ldap/lib/Jobs/Sync.php +++ b/apps/user_ldap/lib/Jobs/Sync.php @@ -25,10 +25,8 @@ namespace OCA\User_LDAP\Jobs; use OC\BackgroundJob\TimedJob; use OC\ServerNotAvailableException; -use OCA\User_LDAP\Access; use OCA\User_LDAP\AccessFactory; use OCA\User_LDAP\Configuration; -use OCA\User_LDAP\Connection; use OCA\User_LDAP\ConnectionFactory; use OCA\User_LDAP\FilesystemHelper; use OCA\User_LDAP\Helper; diff --git a/apps/user_ldap/lib/Notification/Notifier.php b/apps/user_ldap/lib/Notification/Notifier.php index 8c9d20c12dc..34625a3bef4 100644 --- a/apps/user_ldap/lib/Notification/Notifier.php +++ b/apps/user_ldap/lib/Notification/Notifier.php @@ -26,8 +26,6 @@ namespace OCA\User_LDAP\Notification; -use OCP\IUser; -use OCP\IUserManager; use OCP\L10N\IFactory; use OCP\Notification\INotification; use OCP\Notification\INotifier; |