From 020deb21dfd9029273877e8ec00ca5daf0bb8923 Mon Sep 17 00:00:00 2001 From: Pawel Kozlowski Date: Thu, 6 Aug 2015 11:50:16 +0200 Subject: [PATCH] refactor(CompileElement): remove unused methods --- modules/angular2/src/render/dom/compiler/compile_element.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/angular2/src/render/dom/compiler/compile_element.ts b/modules/angular2/src/render/dom/compiler/compile_element.ts index 2333a8573475..55d39db9c3d2 100644 --- a/modules/angular2/src/render/dom/compiler/compile_element.ts +++ b/modules/angular2/src/render/dom/compiler/compile_element.ts @@ -50,8 +50,6 @@ export class CompileElement { return this.inheritedElementBinder; } - refreshAttrs() { this._attrs = null; } - attrs(): Map { 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 { if (isBlank(this._classList)) { this._classList = [];