1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Modernize commit message tips

Summary: Ref T2222. Fully modernizes these tips. No callsites remain for the old methods.

Test Plan: `grep`

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Maniphest Tasks: T2222

Differential Revision: https://secure.phabricator.com/D8457
This commit is contained in:
epriestley 2014-03-08 12:20:10 -08:00
parent 1df84168ef
commit 50331016f7
4 changed files with 9 additions and 16 deletions

View file

@ -42,4 +42,13 @@ final class DifferentialBranchField
}
}
public function getProTips() {
return array(
pht(
'In Git and Mercurial, use a branch like "T123" to automatically '.
'associate changes with the corresponding task.'),
);
}
}

View file

@ -43,10 +43,4 @@ final class DifferentialBranchFieldSpecification
return null;
}
public function getCommitMessageTips() {
return array(
'Name branch "T123" to attach the diff to a task.',
);
}
}

View file

@ -47,11 +47,4 @@ final class DifferentialDependsOnFieldSpecification
return 'phabricator:depends-on';
}
public function getCommitMessageTips() {
return array(
'Use "Depends on D123" in your summary to mark '.
'a dependency between revisions.'
);
}
}

View file

@ -643,9 +643,6 @@ abstract class DifferentialFieldSpecification {
return;
}
public function getCommitMessageTips() {
return array();
}
/* -( Loading Additional Data )-------------------------------------------- */