diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php --- a/src/__phutil_library_map__.php +++ b/src/__phutil_library_map__.php @@ -43,7 +43,7 @@ 'ArcanistCommitLinter' => 'lint/linter/ArcanistCommitLinter.php', 'ArcanistCommitLinterTestCase' => 'lint/linter/__tests__/ArcanistCommitLinterTestCase.php', 'ArcanistCommitWorkflow' => 'workflow/ArcanistCommitWorkflow.php', - 'ArcanistCompilerLikeLintRenderer' => 'lint/renderer/ArcanistCompilerLikeLintRenderer.php', + 'ArcanistCompilerLintRenderer' => 'lint/renderer/ArcanistCompilerLintRenderer.php', 'ArcanistConduitLinter' => 'lint/linter/ArcanistConduitLinter.php', 'ArcanistConfiguration' => 'configuration/ArcanistConfiguration.php', 'ArcanistConfigurationDrivenLintEngine' => 'lint/engine/ArcanistConfigurationDrivenLintEngine.php', @@ -250,7 +250,7 @@ 'ArcanistCommitLinter' => 'ArcanistLinter', 'ArcanistCommitLinterTestCase' => 'ArcanistLinterTestCase', 'ArcanistCommitWorkflow' => 'ArcanistWorkflow', - 'ArcanistCompilerLikeLintRenderer' => 'ArcanistLintRenderer', + 'ArcanistCompilerLintRenderer' => 'ArcanistLintRenderer', 'ArcanistConduitLinter' => 'ArcanistLinter', 'ArcanistConfigurationDrivenLintEngine' => 'ArcanistLintEngine', 'ArcanistConsoleLintRenderer' => 'ArcanistLintRenderer', diff --git a/src/lint/renderer/ArcanistCompilerLikeLintRenderer.php b/src/lint/renderer/ArcanistCompilerLintRenderer.php rename from src/lint/renderer/ArcanistCompilerLikeLintRenderer.php rename to src/lint/renderer/ArcanistCompilerLintRenderer.php --- a/src/lint/renderer/ArcanistCompilerLikeLintRenderer.php +++ b/src/lint/renderer/ArcanistCompilerLintRenderer.php @@ -3,7 +3,7 @@ /** * Shows lint messages to the user. */ -final class ArcanistCompilerLikeLintRenderer extends ArcanistLintRenderer { +final class ArcanistCompilerLintRenderer extends ArcanistLintRenderer { public function renderLintResult(ArcanistLintResult $result) { $lines = array(); diff --git a/src/workflow/ArcanistLintWorkflow.php b/src/workflow/ArcanistLintWorkflow.php --- a/src/workflow/ArcanistLintWorkflow.php +++ b/src/workflow/ArcanistLintWorkflow.php @@ -437,7 +437,7 @@ $renderer = new ArcanistNoneLintRenderer(); break; case 'compiler': - $renderer = new ArcanistCompilerLikeLintRenderer(); + $renderer = new ArcanistCompilerLintRenderer(); $prompt_patches = false; $apply_patches = $this->getArgument('apply-patches'); break;