Chromium Code Reviews| Index: client/html/src/EventTargetWrappingImplementation.dart |
| diff --git a/client/html/src/EventTargetWrappingImplementation.dart b/client/html/src/EventTargetWrappingImplementation.dart |
| index 573873a0d69d0bb898fb9f9d0acfbab21cebcc6a..3256a1aaacd6835006115a724f6643f34c212cb8 100644 |
| --- a/client/html/src/EventTargetWrappingImplementation.dart |
| +++ b/client/html/src/EventTargetWrappingImplementation.dart |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| // 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. |
| @@ -9,9 +9,7 @@ class EventsImplementation implements Events { |
| Map<String, EventListenerList> _listenerMap; |
| EventsImplementation._wrap(this._ptr) { |
| - // TODO(sigmund): the key type (String) yields a warning in frog and the vm, |
|
Siggi Cherem (dart-lang)
2012/01/25 23:26:53
Thanks Eric!
|
| - // but it is currently necessary to compile with dartc. |
| - _listenerMap = <String, EventListenerList>{}; |
| + _listenerMap = <EventListenerList>{}; |
| } |
| EventListenerList operator [](String type) { |