Fix type warning in platform_impl.dart.

BUG=

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

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@16695 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
whesse@google.com 2013-01-07 13:05:27 +00:00
parent 8344be9558
commit d5be59cea7

View file

@ -83,8 +83,8 @@ class _CaseInsensitiveStringMap<V> implements Map<String, V> {
V remove(String key) => _map.remove(key.toUpperCase());
void clear() => _map.clear();
void forEach(void f(String key, V value)) => _map.forEach(f);
Collection<String> get keys => _map.keys;
Collection<V> get values => _map.values;
Iterable<String> get keys => _map.keys;
Iterable<V> get values => _map.values;
int get length => _map.length;
bool get isEmpty => _map.isEmpty;