cleanup(change_detection): removed dead code

This commit is contained in:
vsavkin 2015-04-09 07:36:38 -07:00
parent 22c1a0d030
commit 5408a9a72d
1 changed files with 0 additions and 6 deletions

View File

@ -465,12 +465,6 @@ export class DirectiveBindingMemento {
this.propertyName = propertyName;
this.setter = setter;
}
invoke(currentValue:any, elementInjectors:List<ElementInjector>) {
var elementInjector:ElementInjector = elementInjectors[this._elementInjectorIndex];
var directive = elementInjector.getDirectiveAtIndex(this._directiveIndex);
this.setter(directive, currentValue);
}
}
class DirectiveMemento {