From 3346c7974a438d78d59b6b36c300fc9173f4a9d3 Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Wed, 15 Aug 2018 12:43:55 -0700 Subject: [PATCH] Fix analysis hints (#450) --- lib/src/executable/watch.dart | 1 - test/cli/shared.dart | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/src/executable/watch.dart b/lib/src/executable/watch.dart index 61f68b4b..2a4293e7 100644 --- a/lib/src/executable/watch.dart +++ b/lib/src/executable/watch.dart @@ -117,7 +117,6 @@ class _Watcher { /// /// Returns a future that will only complete if an unexpected error occurs. Future watch(MultiDirWatcher watcher) async { - loop: await for (var event in _debounceEvents(watcher.events)) { var extension = p.extension(event.path); if (extension != '.sass' && extension != '.scss') continue; diff --git a/test/cli/shared.dart b/test/cli/shared.dart index 0dfd6736..77c5b2e3 100644 --- a/test/cli/shared.dart +++ b/test/cli/shared.dart @@ -3,7 +3,6 @@ // https://opensource.org/licenses/MIT. import 'dart:async'; -import 'dart:io'; import 'package:path/path.dart' as p; import 'package:test/test.dart';