feat: remove MapWrapper.contains().

This commit is contained in:
Martin Probst
2015-06-17 21:42:56 -07:00
parent be7ac9fd41
commit dfd30910aa
18 changed files with 28 additions and 30 deletions

View File

@ -56,7 +56,7 @@ export class KeyRegistry {
}
token = theToken;
if (MapWrapper.contains(this._allKeys, token)) {
if (this._allKeys.has(token)) {
return this._allKeys.get(token);
}