Make my pkg packages warning-clean.

R=rnystrom@google.com

Review URL: https://codereview.chromium.org//16097013

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/yaml@23620 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/lib/src/yaml_map.dart b/lib/src/yaml_map.dart
index 303d8ed..aa8397c 100644
--- a/lib/src/yaml_map.dart
+++ b/lib/src/yaml_map.dart
@@ -36,7 +36,7 @@
   Iterable get values => _map.values;
   int get length => _map.length;
   bool get isEmpty => _map.isEmpty;
-  bool get isNotEmpty => map.isNotEmpty;
+  bool get isNotEmpty => _map.isNotEmpty;
   String toString() => _map.toString();
 
   int get hashCode => hashCodeFor(_map);