refactor(Differ): cleanup

This commit is contained in:
Victor Berchet
2016-07-15 16:26:19 -07:00
parent b6746cce9c
commit 0914dc35e8
5 changed files with 153 additions and 209 deletions

View File

@ -539,7 +539,9 @@ export class FormGroup extends AbstractControl {
}
/** @internal */
_forEachChild(cb: Function): void { StringMapWrapper.forEach(this.controls, cb); }
_forEachChild(cb: (v: any, k: string) => void): void {
StringMapWrapper.forEach(this.controls, cb);
}
/** @internal */
_setParentForControls() {