Completed
Pull Request — stable10 (#6492)
by Morris
11:41
created
lib/private/Console/Application.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 
28 28
 use OC_App;
29 29
 use OCP\Console\ConsoleEvent;
30
-use OCP\Defaults;
31 30
 use OCP\IConfig;
32 31
 use OCP\IRequest;
33 32
 use Symfony\Component\Console\Application as SymfonyApplication;
Please login to merge, or discard this patch.
lib/private/TemplateLayout.php 1 patch
Unused Use Statements   -9 removed lines patch added patch discarded remove patch
@@ -35,15 +35,6 @@
 block discarded – undo
35 35
  */
36 36
 namespace OC;
37 37
 
38
-use Assetic\Asset\AssetCollection;
39
-use Assetic\Asset\FileAsset;
40
-use Assetic\AssetWriter;
41
-use Assetic\Filter\CssImportFilter;
42
-use Assetic\Filter\CssMinFilter;
43
-use Assetic\Filter\CssRewriteFilter;
44
-use Assetic\Filter\JSqueezeFilter;
45
-use Assetic\Filter\SeparatorFilter;
46
-
47 38
 class TemplateLayout extends \OC_Template {
48 39
 
49 40
 	private static $versionHash = '';
Please login to merge, or discard this patch.
core/Controller/LoginController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 
23 23
 namespace OC\Core\Controller;
24 24
 
25
-use OC\AppFramework\Utility\TimeFactory;
26 25
 use OC\Authentication\TwoFactorAuth\Manager;
27 26
 use OC\Security\Bruteforce\Throttler;
28 27
 use OC\User\Session;
Please login to merge, or discard this patch.
core/Controller/TokenController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -22,13 +22,10 @@
 block discarded – undo
22 22
 namespace OC\Core\Controller;
23 23
 
24 24
 use OC\AppFramework\Http;
25
-use OC\AppFramework\Utility\TimeFactory;
26
-use OC\Authentication\Token\DefaultTokenProvider;
27 25
 use OC\Authentication\Token\IProvider;
28 26
 use OC\Authentication\Token\IToken;
29 27
 use OC\Authentication\TwoFactorAuth\Manager as TwoFactorAuthManager;
30 28
 use OC\User\Manager as UserManager;
31
-use OCA\User_LDAP\User\Manager;
32 29
 use OCP\AppFramework\Controller;
33 30
 use OCP\AppFramework\Http\JSONResponse;
34 31
 use OCP\IRequest;
Please login to merge, or discard this patch.
apps/user_ldap/lib/LDAPProvider.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -21,12 +21,10 @@
 block discarded – undo
21 21
 
22 22
 namespace OCA\User_LDAP;
23 23
 
24
-use OCP\IUserBackend;
25 24
 use OCP\LDAP\ILDAPProvider;
26 25
 use OCP\LDAP\IDeletionFlagSupport;
27 26
 use OCP\IServerContainer;
28 27
 use OCA\User_LDAP\User\DeletedUsersIndex;
29
-use OCA\User_LDAP\Mapping\UserMapping;
30 28
 
31 29
 /**
32 30
  * LDAP provider for pulic access to the LDAP backend.
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/FilesPlugin.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@
 block discarded – undo
31 31
 namespace OCA\DAV\Connector\Sabre;
32 32
 
33 33
 use OC\Files\View;
34
-use OCA\DAV\Upload\FutureFile;
35 34
 use OCP\Files\ForbiddenException;
36 35
 use OCP\IPreview;
37 36
 use Sabre\DAV\Exception\Forbidden;
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/DavAclPlugin.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -25,14 +25,11 @@
 block discarded – undo
25 25
 
26 26
 use Sabre\CalDAV\Principal\User;
27 27
 use Sabre\DAV\Exception\NotFound;
28
-use Sabre\DAV\IFile;
29 28
 use Sabre\DAV\INode;
30 29
 use \Sabre\DAV\PropFind;
31 30
 use \Sabre\DAV\PropPatch;
32
-use Sabre\DAVACL\Exception\NeedPrivileges;
33 31
 use \Sabre\HTTP\RequestInterface;
34 32
 use \Sabre\HTTP\ResponseInterface;
35
-use Sabre\HTTP\URLUtil;
36 33
 
37 34
 /**
38 35
  * Class DavAclPlugin is a wrapper around \Sabre\DAVACL\Plugin that returns 404
Please login to merge, or discard this patch.