Fix analysis hints (#450)

This commit is contained in:
Natalie Weizenbaum 2018-08-15 12:43:55 -07:00 committed by GitHub
parent a33bc8812e
commit 3346c7974a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -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;

View File

@ -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';