From 06dacc2b9fe07554e854446c8658a08f2381ba56 Mon Sep 17 00:00:00 2001 From: Mike Fairhurst Date: Thu, 20 Aug 2020 11:07:41 -0700 Subject: [PATCH] Remove unnecessary dart:async import. With the version constraint excluding 2.0, the import is not necessary. --- lib/pedantic.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/pedantic.dart b/lib/pedantic.dart index 5276dc905cfaf..7998a890346f4 100644 --- a/lib/pedantic.dart +++ b/lib/pedantic.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' show Future; - /// Indicates to tools that [future] is intentionally not `await`-ed. /// /// In an `async` context, it is normally expected that all [Future]s are