diff options
author | Marc Hefter <marchefter@march42.net> | 2022-05-21 16:03:42 +0200 |
---|---|---|
committer | Marc Hefter <marchefter@gmail.com> | 2023-04-06 08:20:24 +0200 |
commit | 240c57b94b274f157a4b7d38d168e06b48a8fafc (patch) | |
tree | f9afd07761130e4fadf2ce17d709cc1d637011be /apps/user_ldap | |
parent | b72fbd58f61b40db40c2f9a61e47ef8985008dc2 (diff) | |
download | nextcloud-server-240c57b94b274f157a4b7d38d168e06b48a8fafc.tar.gz nextcloud-server-240c57b94b274f157a4b7d38d168e06b48a8fafc.zip |
cleanup: removed unnecessary imports of IAccountManager, AccountManager, IDBConnection
Signed-off-by: Marc Hefter <marchefter@march42.net>
Signed-off-by: Marc Hefter <marchefter@gmail.com>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r-- | apps/user_ldap/lib/User/User.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/user_ldap/lib/User/User.php b/apps/user_ldap/lib/User/User.php index a3d87c31541..85cf3bde301 100644 --- a/apps/user_ldap/lib/User/User.php +++ b/apps/user_ldap/lib/User/User.php @@ -36,16 +36,13 @@ use OCA\User_LDAP\Access; use OCA\User_LDAP\Connection; use OCA\User_LDAP\Exceptions\AttributeNotSet; use OCA\User_LDAP\FilesystemHelper; -use OC\Accounts\AccountManager; -use OCP\Accounts\IAccountManager; -use OCP\Accounts\PropertyDoesNotExistException; use OCP\IAvatarManager; use OCP\IConfig; -use OCP\IDBConnection; use OCP\ILogger; use OCP\Image; use OCP\IUser; use OCP\IUserManager; +use OCP\Accounts\PropertyDoesNotExistException; use OCP\Notification\IManager as INotificationManager; use Psr\Log\LoggerInterface; |