File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ class WebtritPhoneToolsCommandRunner extends CompletionCommandRunner<int> {
6969 addCommand (ConfiguratorGenerateCommand (logger: _logger));
7070 addCommand (KeystoreInitCommand (
7171 logger: _logger,
72- httpClient: _httpClient,
7372 datasource: _datasource,
7473 keystoreReadmeUpdater: _keystoreReadmeUpdater,
7574 ));
Original file line number Diff line number Diff line change @@ -22,11 +22,9 @@ const _token = 'token';
2222class KeystoreInitCommand extends Command <int > {
2323 KeystoreInitCommand ({
2424 required Logger logger,
25- required HttpClient httpClient,
2625 required ConfiguratorBackandDatasource datasource,
2726 required KeystoreReadmeUpdater keystoreReadmeUpdater,
2827 }) : _logger = logger,
29- _httpClient = httpClient,
3028 _readmeUpdater = keystoreReadmeUpdater,
3129 _datasource = datasource,
3230 _commandRunner = CommandRunner <int >('tool' , 'A tool to manage keystore' )
@@ -54,7 +52,6 @@ class KeystoreInitCommand extends Command<int> {
5452
5553 final Logger _logger;
5654
57- final HttpClient _httpClient;
5855 final ConfiguratorBackandDatasource _datasource;
5956
6057 final KeystoreReadmeUpdater _readmeUpdater;
You can’t perform that action at this time.
0 commit comments