refactor(CompileElement): remove unused methods

Closes #3500
This commit is contained in:
Pawel Kozlowski 2015-08-06 11:50:16 +02:00
parent a37de36fa6
commit 339071cb07
1 changed files with 0 additions and 4 deletions

View File

@ -50,8 +50,6 @@ export class CompileElement {
return this.inheritedElementBinder;
}
refreshAttrs() { this._attrs = null; }
attrs(): Map<string, string> {
if (isBlank(this._attrs)) {
this._attrs = DOM.attributeMap(this.element);
@ -59,8 +57,6 @@ export class CompileElement {
return this._attrs;
}
refreshClassList() { this._classList = null; }
classList(): List<string> {
if (isBlank(this._classList)) {
this._classList = [];