Merge pull request #93 from srawlins/unused-async

Remove unused dart:async import
diff --git a/lib/src/async_queue.dart b/lib/src/async_queue.dart
index 9f8bedf..37f13d6 100644
--- a/lib/src/async_queue.dart
+++ b/lib/src/async_queue.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:collection';
 
 typedef ItemProcessor<T> = Future<void> Function(T item);
diff --git a/lib/src/stat.dart b/lib/src/stat.dart
index fb157a5..08cf935 100644
--- a/lib/src/stat.dart
+++ b/lib/src/stat.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';
 
 /// A function that takes a file path and returns the last modified time for
diff --git a/lib/watcher.dart b/lib/watcher.dart
index 5ea8beb..01336ab 100644
--- a/lib/watcher.dart
+++ b/lib/watcher.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 'src/directory_watcher.dart';