Skip to content

Commit 339071c

Browse files
refactor(CompileElement): remove unused methods
Closes angular#3500
1 parent a37de36 commit 339071c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

modules/angular2/src/render/dom/compiler/compile_element.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,13 @@ export class CompileElement {
5050
return this.inheritedElementBinder;
5151
}
5252

53-
refreshAttrs() { this._attrs = null; }
54-
5553
attrs(): Map<string, string> {
5654
if (isBlank(this._attrs)) {
5755
this._attrs = DOM.attributeMap(this.element);
5856
}
5957
return this._attrs;
6058
}
6159

62-
refreshClassList() { this._classList = null; }
63-
6460
classList(): List<string> {
6561
if (isBlank(this._classList)) {
6662
this._classList = [];

0 commit comments

Comments
 (0)