Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: pkg/yaml/lib/src/yaml_map.dart

Issue 16097013: Make my pkg packages warning-clean. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/yaml/lib/src/yaml_map.dart
diff --git a/pkg/yaml/lib/src/yaml_map.dart b/pkg/yaml/lib/src/yaml_map.dart
index 303d8ed777a52b012bcf206f26357dca0289159c..aa8397cfa6bb72fc5e11dd287365361d205af9a3 100644
--- a/pkg/yaml/lib/src/yaml_map.dart
+++ b/pkg/yaml/lib/src/yaml_map.dart
@@ -36,7 +36,7 @@ class YamlMap implements Map {
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;
Bob Nystrom 2013/06/04 23:17:39 Yay warnings!
String toString() => _map.toString();
int get hashCode => hashCodeFor(_map);
« no previous file with comments | « pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698