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
+1 -1
View File
@@ -21,7 +21,7 @@ export class Log {
clear(): void { this._result = []; }
result(): string { return ListWrapper.join(this._result, "; "); }
result(): string { return this._result.join("; "); }
}