refactor(ListWrapper): get ride of ListWrapper.join

This commit is contained in:
Victor Berchet
2015-10-06 17:11:10 -07:00
parent 62e14dc529
commit b6537ad609
10 changed files with 16 additions and 29 deletions

View File

@ -42,7 +42,7 @@ export function setUpControl(control: Control, dir: NgControl): void {
}
function _throwError(dir: NgControl, message: string): void {
var path = ListWrapper.join(dir.path, " -> ");
var path = dir.path.join(" -> ");
throw new BaseException(`${message} '${path}'`);
}