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

Reduce method visibility.

Summary: These methods are declared `public`, but there are meant to be `protected` (as they are declared in `ArcanistExternalLinter`).

Test Plan: N/A

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D8991
This commit is contained in:
Joshua Spence 2014-05-05 20:31:33 -07:00 committed by epriestley
parent e00ce65200
commit 48d52c30b0

View file

@ -63,13 +63,13 @@ final class ArcanistJSHintLinter extends ArcanistExternalLinter {
return '-';
}
public function getMandatoryFlags() {
protected function getMandatoryFlags() {
return array(
'--reporter='.dirname(realpath(__FILE__)).'/reporter.js',
);
}
public function getDefaultFlags() {
protected function getDefaultFlags() {
$config_manager = $this->getEngine()->getConfigurationManager();
$options = $config_manager->getConfigFromAnySource(
'lint.jshint.options',