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

Unified Diff: lib/coreimpl/hash_map_set.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « lib/coreimpl/future_implementation.dart ('k') | lib/coreimpl/linked_hash_map.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/coreimpl/hash_map_set.dart
diff --git a/lib/coreimpl/hash_map_set.dart b/lib/coreimpl/hash_map_set.dart
index 37c1cfb6ad71572b064779e5d597ea356b232826..8d5ee2cabb06e4379cfe87b46002f2662b84e697 100644
--- a/lib/coreimpl/hash_map_set.dart
+++ b/lib/coreimpl/hash_map_set.dart
@@ -221,7 +221,7 @@ class HashMapImplementation<K extends Hashable, V> implements HashMap<K, V> {
return _numberOfEntries == 0;
}
- int get length() {
+ int get length {
return _numberOfEntries;
}
@@ -377,7 +377,7 @@ class HashSetImplementation<E extends Hashable> implements HashSet<E> {
return _backingMap.isEmpty();
}
- int get length() {
+ int get length {
return _backingMap.length;
}
« no previous file with comments | « lib/coreimpl/future_implementation.dart ('k') | lib/coreimpl/linked_hash_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698