remove ignore unawaited_future comments (#5959)

This commit is contained in:
Dan Rubel 2016-09-21 08:35:04 -04:00 committed by GitHub
parent 9f5eeb1bee
commit 3f025e0ddf
2 changed files with 0 additions and 2 deletions

View File

@ -34,7 +34,6 @@ Future<Map<String, dynamic>> runTask(String taskName) async {
bool runnerFinished = false;
// ignore: unawaited_futures
runner.exitCode.then((_) {
runnerFinished = true;
});

View File

@ -166,7 +166,6 @@ Future<Process> startProcess(String executable, List<String> arguments,
ProcessInfo procInfo = new ProcessInfo(command, proc);
_runningProcesses.add(procInfo);
// ignore: unawaited_futures
proc.exitCode.then((_) {
_runningProcesses.remove(procInfo);
});