Completed
Push — master ( 30f7bc...d1fc9d )
by Timo
09:09
created
Classes/Backend/IndexingConfigurationSelectorField.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -25,10 +25,8 @@
 block discarded – undo
25 25
  ***************************************************************/
26 26
 
27 27
 use ApacheSolrForTypo3\Solr\Site;
28
-use ApacheSolrForTypo3\Solr\Util;
29 28
 use TYPO3\CMS\Backend\Form\FormResultCompiler;
30 29
 use TYPO3\CMS\Backend\Form\NodeFactory;
31
-use TYPO3\CMS\Core\Page\PageRenderer;
32 30
 use TYPO3\CMS\Core\Utility\GeneralUtility;
33 31
 
34 32
 /**
Please login to merge, or discard this patch.
Classes/ConnectionManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
 use TYPO3\CMS\Backend\Toolbar\ClearCacheActionsHookInterface;
28 28
 use TYPO3\CMS\Backend\Utility\BackendUtility;
29
-use TYPO3\CMS\Backend\Utility\IconUtility;
30 29
 use TYPO3\CMS\Core\SingletonInterface;
31 30
 use TYPO3\CMS\Core\Utility\GeneralUtility;
32 31
 use TYPO3\CMS\Core\Imaging\Icon;
Please login to merge, or discard this patch.
Classes/Domain/Index/IndexService.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -30,14 +30,9 @@
 block discarded – undo
30 30
 use ApacheSolrForTypo3\Solr\IndexQueue\Queue;
31 31
 use ApacheSolrForTypo3\Solr\Site;
32 32
 use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration;
33
-use ApacheSolrForTypo3\Solr\System\Environment\CliEnvironment;
34 33
 use ApacheSolrForTypo3\Solr\Task\IndexQueueWorkerTask;
35
-use ApacheSolrForTypo3\Solr\Util;
36 34
 use TYPO3\CMS\Backend\Utility\BackendUtility;
37
-use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
38 35
 use TYPO3\CMS\Core\Utility\GeneralUtility;
39
-use TYPO3\CMS\Core\SingletonInterface;
40
-use TYPO3\CMS\Core\Utility\ArrayUtility;
41 36
 
42 37
 /**
43 38
  * Service to perform indexing operations
Please login to merge, or discard this patch.
Classes/Domain/Search/SearchRequest.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -24,12 +24,9 @@
 block discarded – undo
24 24
  *
25 25
  *  This copyright notice MUST APPEAR in all copies of the script!
26 26
  ***************************************************************/
27
-use ApacheSolrForTypo3\Solr\System\Configuration\ConfigurationManager;
28 27
 use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration;
29 28
 use ApacheSolrForTypo3\Solr\System\Util\ArrayAccessor;
30
-use ApacheSolrForTypo3\Solr\Util;
31 29
 use TYPO3\CMS\Core\Utility\ArrayUtility;
32
-use TYPO3\CMS\Core\Utility\GeneralUtility;
33 30
 
34 31
 /**
35 32
  * The searchRequest is used to act as an api to the arguments that have been passed
Please login to merge, or discard this patch.
Classes/Plugin/Results/Results.php 1 patch
Unused Use Statements   -6 removed lines patch added patch discarded remove patch
@@ -26,17 +26,11 @@
 block discarded – undo
26 26
 
27 27
 use ApacheSolrForTypo3\Solr\CommandResolver;
28 28
 use ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\SearchResultSet;
29
-use ApacheSolrForTypo3\Solr\Domain\Search\ResultSet\SearchResultSetService;
30 29
 use ApacheSolrForTypo3\Solr\Domain\Search\SearchRequest;
31 30
 use ApacheSolrForTypo3\Solr\Plugin\CommandPluginBase;
32
-use ApacheSolrForTypo3\Solr\Plugin\PluginAware;
33 31
 use ApacheSolrForTypo3\Solr\Plugin\PluginCommand;
34
-use ApacheSolrForTypo3\Solr\Query;
35
-use ApacheSolrForTypo3\Solr\Response\Processor\ResponseProcessor;
36
-use ApacheSolrForTypo3\Solr\Search\QueryAware;
37 32
 use ApacheSolrForTypo3\Solr\System\Configuration\TypoScriptConfiguration;
38 33
 use ApacheSolrForTypo3\Solr\Template;
39
-use ApacheSolrForTypo3\Solr\Util;
40 34
 use TYPO3\CMS\Core\Utility\GeneralUtility;
41 35
 
42 36
 /**
Please login to merge, or discard this patch.
Classes/System/Configuration/TypoScriptConfiguration.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,8 @@
 block discarded – undo
4 4
 
5 5
 use ApacheSolrForTypo3\Solr\System\Util\ArrayAccessor;
6 6
 use InvalidArgumentException;
7
-use TYPO3\CMS\Core\SingletonInterface;
8 7
 use TYPO3\CMS\Core\Utility\ArrayUtility;
9 8
 use TYPO3\CMS\Core\Utility\GeneralUtility;
10
-use TYPO3\CMS\Fluid\Exception;
11 9
 
12 10
 /**
13 11
  * TypoScript configuration object, used to read all TypoScript configuration.
Please login to merge, or discard this patch.
Classes/Task/IndexQueueWorkerTask.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -25,13 +25,8 @@
 block discarded – undo
25 25
  ***************************************************************/
26 26
 
27 27
 use ApacheSolrForTypo3\Solr\Domain\Index\IndexService;
28
-use ApacheSolrForTypo3\Solr\IndexQueue\Indexer;
29
-use ApacheSolrForTypo3\Solr\IndexQueue\Item;
30 28
 use ApacheSolrForTypo3\Solr\Site;
31 29
 use ApacheSolrForTypo3\Solr\System\Environment\CliEnvironment;
32
-use ApacheSolrForTypo3\Solr\Util;
33
-use TYPO3\CMS\Backend\Utility\BackendUtility;
34
-use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
35 30
 use TYPO3\CMS\Core\Utility\GeneralUtility;
36 31
 use TYPO3\CMS\Scheduler\ProgressProviderInterface;
37 32
 use TYPO3\CMS\Scheduler\Task\AbstractTask;
Please login to merge, or discard this patch.
Classes/Template.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 
27 27
 use ApacheSolrForTypo3\Solr\ViewHelper\SubpartViewHelper;
28 28
 use ApacheSolrForTypo3\Solr\ViewHelper\ViewHelper;
29
-use TYPO3\CMS\Core\Html\HtmlParser;
30 29
 use TYPO3\CMS\Core\Service\MarkerBasedTemplateService;
31 30
 use TYPO3\CMS\Core\Utility\ExtensionManagementUtility;
32 31
 use TYPO3\CMS\Core\Utility\GeneralUtility;
Please login to merge, or discard this patch.
Classes/Typo3PageContentExtractor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@
 block discarded – undo
24 24
  *  This copyright notice MUST APPEAR in all copies of the script!
25 25
  ***************************************************************/
26 26
 
27
-use TYPO3\CMS\Core\Utility\ArrayUtility;
28 27
 use TYPO3\CMS\Core\Utility\GeneralUtility;
29 28
 
30 29
 /**
Please login to merge, or discard this patch.