feat: remove MapWrapper.clear().

It's the same in Dart and JavaScript.
This commit is contained in:
Martin Probst
2015-06-18 09:59:51 -07:00
parent dfd30910aa
commit 941362014b
6 changed files with 6 additions and 10 deletions

View File

@ -52,8 +52,8 @@ export class CompilerCache {
}
clear(): void {
MapWrapper.clear(this._cache);
MapWrapper.clear(this._hostCache);
this._cache.clear();
this._hostCache.clear();
}
}