From 63c58e3b1ab1c37541aa90c338100a693e6072bd Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Mon, 9 Nov 2020 19:59:25 -0800 Subject: [PATCH] Remove unused dart:async imports. As of Dart 2.1, Future/Stream have been exported from dart:core. --- test/file_watcher/shared.dart | 2 -- test/utils.dart | 1 - 2 files changed, 3 deletions(-) diff --git a/test/file_watcher/shared.dart b/test/file_watcher/shared.dart index c837a2136d397..9b72f0ed6cf0d 100644 --- a/test/file_watcher/shared.dart +++ b/test/file_watcher/shared.dart @@ -2,8 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -import 'dart:async'; - import 'package:test/test.dart'; import '../utils.dart'; diff --git a/test/utils.dart b/test/utils.dart index 06d1a1267b2e7..6e7686c27ebab 100644 --- a/test/utils.dart +++ b/test/utils.dart @@ -2,7 +2,6 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -import 'dart:async'; import 'dart:io'; import 'package:async/async.dart';