From 69eb09613e3707ff8d3d2ade88ca16f39496d6b7 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Sun, 1 Nov 2020 18:57:04 -0800 Subject: [PATCH] Remove unnecessary dart:async imports --- lib/src/repl_adapter/interface.dart | 2 -- lib/src/repl_adapter/vm.dart | 1 - 2 files changed, 3 deletions(-) diff --git a/lib/src/repl_adapter/interface.dart b/lib/src/repl_adapter/interface.dart index c549351..2a191f2 100644 --- a/lib/src/repl_adapter/interface.dart +++ b/lib/src/repl_adapter/interface.dart @@ -1,5 +1,3 @@ -import 'dart:async'; - import '../../cli_repl.dart'; class ReplAdapter { diff --git a/lib/src/repl_adapter/vm.dart b/lib/src/repl_adapter/vm.dart index 4d10e9c..5f5e3a3 100644 --- a/lib/src/repl_adapter/vm.dart +++ b/lib/src/repl_adapter/vm.dart @@ -1,4 +1,3 @@ -import 'dart:async'; import 'dart:io'; import 'package:async/async.dart';