mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-10 00:42:40 +01:00
Remove deprecated ComprehensiveLintEngine
class
Summary: Ref T5655. This class was deprecated in D11673. Test Plan: Wait a few months. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T5655 Differential Revision: https://secure.phabricator.com/D11740
This commit is contained in:
parent
41ddd34aeb
commit
92713cf922
3 changed files with 1 additions and 20 deletions
|
@ -211,7 +211,6 @@ phutil_register_library_map(array(
|
|||
'ArcanistXMLLinterTestCase' => 'lint/linter/__tests__/ArcanistXMLLinterTestCase.php',
|
||||
'ArcanistXUnitTestResultParser' => 'unit/parser/ArcanistXUnitTestResultParser.php',
|
||||
'CSharpToolsTestEngine' => 'unit/engine/CSharpToolsTestEngine.php',
|
||||
'ComprehensiveLintEngine' => 'lint/engine/ComprehensiveLintEngine.php',
|
||||
'NoseTestEngine' => 'unit/engine/NoseTestEngine.php',
|
||||
'PhpunitTestEngine' => 'unit/engine/PhpunitTestEngine.php',
|
||||
'PhpunitTestEngineTestCase' => 'unit/engine/__tests__/PhpunitTestEngineTestCase.php',
|
||||
|
@ -390,7 +389,6 @@ phutil_register_library_map(array(
|
|||
'ArcanistXMLLinter' => 'ArcanistLinter',
|
||||
'ArcanistXMLLinterTestCase' => 'ArcanistLinterTestCase',
|
||||
'CSharpToolsTestEngine' => 'XUnitTestEngine',
|
||||
'ComprehensiveLintEngine' => 'ArcanistComprehensiveLintEngine',
|
||||
'NoseTestEngine' => 'ArcanistUnitTestEngine',
|
||||
'PhpunitTestEngine' => 'ArcanistUnitTestEngine',
|
||||
'PhpunitTestEngineTestCase' => 'ArcanistTestCase',
|
||||
|
|
|
@ -2,10 +2,8 @@
|
|||
|
||||
/**
|
||||
* Basic lint engine which just applies several linters based on the file types.
|
||||
*
|
||||
* @todo Should be final but isn't because of @{class:ComprehensiveLintEngine}.
|
||||
*/
|
||||
class ArcanistComprehensiveLintEngine extends ArcanistLintEngine {
|
||||
final class ArcanistComprehensiveLintEngine extends ArcanistLintEngine {
|
||||
|
||||
public function buildLinters() {
|
||||
$linters = array();
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
final class ComprehensiveLintEngine extends ArcanistComprehensiveLintEngine {
|
||||
|
||||
public function buildLinters() {
|
||||
phutil_deprecated(
|
||||
__CLASS__,
|
||||
'You should use `ArcanistComprehensiveLintEngine` instead.');
|
||||
parent::buildLinters();
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue