1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-25 16:22:42 +01:00

[LATER] Remove deprecated mark-committed workflow.

Summary: This workflow has been deprecated for a long time now. At some stage, it should be removed.

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D9463
This commit is contained in:
Joshua Spence 2014-06-10 18:28:59 -07:00 committed by epriestley
parent 02e3905cf5
commit 4c06d1b9e3
2 changed files with 0 additions and 51 deletions

View file

@ -115,7 +115,6 @@ phutil_register_library_map(array(
'ArcanistLinterTestCase' => 'lint/linter/__tests__/ArcanistLinterTestCase.php',
'ArcanistLintersWorkflow' => 'workflow/ArcanistLintersWorkflow.php',
'ArcanistListWorkflow' => 'workflow/ArcanistListWorkflow.php',
'ArcanistMarkCommittedWorkflow' => 'workflow/ArcanistMarkCommittedWorkflow.php',
'ArcanistMercurialAPI' => 'repository/api/ArcanistMercurialAPI.php',
'ArcanistMercurialParser' => 'repository/parser/ArcanistMercurialParser.php',
'ArcanistMercurialParserTestCase' => 'repository/parser/__tests__/ArcanistMercurialParserTestCase.php',
@ -286,7 +285,6 @@ phutil_register_library_map(array(
'ArcanistLinterTestCase' => 'ArcanistPhutilTestCase',
'ArcanistLintersWorkflow' => 'ArcanistBaseWorkflow',
'ArcanistListWorkflow' => 'ArcanistBaseWorkflow',
'ArcanistMarkCommittedWorkflow' => 'ArcanistBaseWorkflow',
'ArcanistMercurialAPI' => 'ArcanistRepositoryAPI',
'ArcanistMercurialParserTestCase' => 'ArcanistTestCase',
'ArcanistMergeConflictLinter' => 'ArcanistLinter',

View file

@ -1,49 +0,0 @@
<?php
/**
* @group workflow
*/
final class ArcanistMarkCommittedWorkflow extends ArcanistBaseWorkflow {
public function getWorkflowName() {
return 'mark-committed';
}
public function getCommandSynopses() {
return phutil_console_format(<<<EOTEXT
**mark-committed** (DEPRECATED)
EOTEXT
);
}
public function getCommandHelp() {
return phutil_console_format(<<<EOTEXT
Deprecated. Moved to "close-revision".
EOTEXT
);
}
public function getArguments() {
return array(
'*' => 'deprecated',
);
}
public function requiresConduit() {
return true;
}
public function requiresAuthentication() {
return true;
}
public function requiresRepositoryAPI() {
return true;
}
public function run() {
throw new ArcanistUsageException(
"'arc mark-committed' is now 'arc close-revision' (because ".
"'mark-committed' only really made sense under SVN).");
}
}