Index: pkg/fletchc/lib/src/verbs/x_download_tools_verb.dart |
diff --git a/pkg/fletchc/lib/src/verbs/x_download_tools_verb.dart b/pkg/fletchc/lib/src/verbs/x_download_tools_verb.dart |
deleted file mode 100644 |
index 7c67668367a8c59fa5dd45ace1c7afe720aaaf0a..0000000000000000000000000000000000000000 |
--- a/pkg/fletchc/lib/src/verbs/x_download_tools_verb.dart |
+++ /dev/null |
@@ -1,30 +0,0 @@ |
-// Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE.md file. |
- |
-library fletchc.verbs.x_download_tools_verb; |
- |
-import 'infrastructure.dart'; |
-import '../worker/developer.dart' show downloadTools; |
-import 'documentation.dart' show downloadToolsDocumentation; |
- |
-const Action downloadToolsAction = const Action( |
- downloadToolsFunction, downloadToolsDocumentation, |
- requiresSession: true); |
- |
-Future downloadToolsFunction( |
- AnalyzedSentence sentence, VerbContext context) async { |
- return context.performTaskInWorker(new DownloadTooksTask()); |
-} |
- |
-class DownloadTooksTask extends SharedTask { |
- |
- DownloadTooksTask(); |
- |
- Future call( |
- CommandSender commandSender, |
- StreamIterator<ClientCommand> commandIterator) async { |
- return await downloadTools( |
- commandSender, commandIterator, SessionState.current); |
- } |
-} |